Skip to content

Commit d95bf7a

Browse files
committed
Suppress the data_too_large health check
This is a temporary workaround until we can figure out what is causing tests to fail it. See #277
1 parent 809a198 commit d95bf7a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

conftest.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import warnings
55
import os
66

7-
from hypothesis import settings
7+
from hypothesis import settings, HealthCheck
88
from hypothesis.errors import InvalidArgument
99
from pytest import mark
1010

@@ -105,6 +105,10 @@ def pytest_configure(config):
105105
max_examples=config.getoption("--hypothesis-max-examples"),
106106
derandomize=config.getoption("--hypothesis-derandomize"),
107107
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,),
108112
)
109113
settings.load_profile("array-api-tests")
110114
# CI

0 commit comments

Comments
 (0)