Terry Brown
Terry Brown
For me similar output (can't serialize ) but it bails after 20 passing tests (out of 284) and doesn't show anything under Passes in `tui` view. That's with xdist's `-n...
Hmm, for the above report `pytest -VV` was ``` This is pytest version 8.0.0, imported from /usr/local/lib/python3.12/site-packages/pytest/__init__.py setuptools registered plugins: anyio-4.2.0 at /usr/local/lib/python3.12/site-packages/anyio/pytest_plugin.py pytest-xdist-3.5.0 at /usr/local/lib/python3.12/site-packages/xdist/plugin.py pytest-xdist-3.5.0 at /usr/local/lib/python3.12/site-packages/xdist/looponfail.py pytest-parallel-0.1.1...
So `ImportError: Package 'textual.widgets' has no class 'ScrollView'` was a red-herring diversion of course, I re-built the container with `textual==0.1.18` and got this ``` This is pytest version 7.4.4, imported...
Here's a simple reproducible example ```python # mylib.py import random import time def my_func(): time.sleep(3) if random.random() < 0.1: return 1 ``` ```python # test_mylib.py import pytest from mylib import...
😆 no I'm good thanks - I'm surprised there's not more interest because on a couple of projects I'm finding when a lot of tests are failing pytest output is...