We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 809a198 commit dd98098Copy full SHA for dd98098
conftest.py
@@ -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=(settings.HealthCheck.data_too_large,),
112
)
113
settings.load_profile("array-api-tests")
114
# CI
0 commit comments