Running all tests with pytest will result in some tests failing. The same tests will pass when run individually, e.g. pytest tests/test_fvs_fmsc.py, or when tests are restarted from the last failure, pytest --lf. This suggests that the test environment is being polluted by previous tests.
Running all tests with
pytestwill result in some tests failing. The same tests will pass when run individually, e.g.pytest tests/test_fvs_fmsc.py, or when tests are restarted from the last failure,pytest --lf. This suggests that the test environment is being polluted by previous tests.