rbierbasz
Results
2
comments of
rbierbasz
It doesn't run any teardowns, not only session-scoped: ``` import pytest @pytest.fixture() def a(): print("a - setup") yield print("a - teardown") def test(a): print("test") assert False ``` Executed with xdist:...
@RonnyPfannschmidt OK, I tested setup and teardown with side effect (touching files) and the files were touched. Thanks.