We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9faf431 commit 66bb8a8Copy full SHA for 66bb8a8
tests/conftest.py
@@ -66,7 +66,7 @@ def pytest_collection_modifyitems(config, items):
66
if "CI" in os.environ:
67
# Mark network tests as flaky
68
if item.get_closest_marker('network') is not None:
69
- item.add_marker(pytest.mark.flaky(reruns=3))
+ item.add_marker(pytest.mark.flaky(reruns=3, reruns_delay=2))
70
71
if (item.get_closest_marker('fails_on_new_resolver') and
72
config.getoption("--new-resolver") and
0 commit comments