We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 809a198 commit d95bf7aCopy full SHA for d95bf7a
conftest.py
@@ -4,7 +4,7 @@
4
import warnings
5
import os
6
7
-from hypothesis import settings
+from hypothesis import settings, HealthCheck
8
from hypothesis.errors import InvalidArgument
9
from pytest import mark
10
@@ -105,6 +105,10 @@ def pytest_configure(config):
105
max_examples=config.getoption("--hypothesis-max-examples"),
106
derandomize=config.getoption("--hypothesis-derandomize"),
107
deadline=deadline,
108
+ # TEMP FIX: Tests are randomly failing the data_too_large health
109
+ # check. Just suppress it for now. See
110
+ # https://github.com/data-apis/array-api-tests/issues/277
111
+ suppress_health_check=(HealthCheck.data_too_large,),
112
)
113
settings.load_profile("array-api-tests")
114
# CI
0 commit comments