Jim Arnow

Results 1 issues of Jim Arnow

When a test fails and is rerun, Flaky reruns session-scoped autouse fixtures. For example, running this test: ``` import pytest @pytest.fixture(scope="session", autouse=True) def my_session_scoped_autouse_fixture(): print("\nIn session scope autouse fixture") @pytest.mark.flaky(max_runs=3)...