Skip to content

Commit 46d10db

Browse files
authored
Merge pull request #279 from data-apis/revert-278-suppress-data_too_large
Revert "Suppress the data_too_large health check"
2 parents f83cbc5 + 2279629 commit 46d10db

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

conftest.py

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

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

@@ -105,10 +105,6 @@ 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,),
112108
)
113109
settings.load_profile("array-api-tests")
114110
# CI

0 commit comments

Comments
 (0)