We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 050b7fc commit 75b290fCopy full SHA for 75b290f
hypothesis-python/tests/conftest.py
@@ -94,6 +94,13 @@ def warns_or_raises(request):
94
return pytest.warns
95
96
97
+# crosshair needs actual time for its path timeouts; load it before patching
98
+try:
99
+ import hypothesis_crosshair_provider.crosshair_provider # noqa: F401
100
+except ImportError:
101
+ pass
102
+
103
104
@pytest.fixture(scope="function", autouse=True)
105
def _consistently_increment_time(monkeypatch):
106
"""Rather than rely on real system time we monkey patch time.time so that
0 commit comments