You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the slowness seems to happen in the encoding module (or at least, that's where ctrl-c catches us)
test_plugin_load is also slow
to troubleshoot, try adding in tests from the "extra" list (just above) before test_cli, and see which one (or ones...) make it slow down. then we can work out what we don't know about how tests are run / how state is preserved or not removed.
seeing as test_cli seems to get a bit stuck on encoding, maybe test_probes_encoding is the trigger. maybe we're creating way too many combinations of encodings. ¯_(ツ)_/¯
The text was updated successfully, but these errors were encountered:
PR #472 is a hack.
pytest-8.0.0 changed the ordering of tests, and this exposed a stateful? dependency that led to tests hanging/taking incredibly long.
py 3.11.5
pytest 7.4.2
python3 -m pytest tests/test_cli.py OK
python3 -m pytest tests/ OK
pytest 8.0.0
python3 -m pytest tests/test_cli.py OK
python3 -m pytest tests/ vv slow
to troubleshoot, try adding in tests from the "extra" list (just above) before test_cli, and see which one (or ones...) make it slow down. then we can work out what we don't know about how tests are run / how state is preserved or not removed.
seeing as test_cli seems to get a bit stuck on encoding, maybe test_probes_encoding is the trigger. maybe we're creating way too many combinations of encodings. ¯_(ツ)_/¯
The text was updated successfully, but these errors were encountered: