Skip to content

Commit

Permalink
Merge pull request #279 from data-apis/revert-278-suppress-data_too_l…
Browse files Browse the repository at this point in the history
…arge

Revert "Suppress the data_too_large health check"
  • Loading branch information
asmeurer committed Jul 1, 2024
2 parents f83cbc5 + 2279629 commit 46d10db
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import warnings
import os

from hypothesis import settings, HealthCheck
from hypothesis import settings
from hypothesis.errors import InvalidArgument
from pytest import mark

Expand Down Expand Up @@ -105,10 +105,6 @@ def pytest_configure(config):
max_examples=config.getoption("--hypothesis-max-examples"),
derandomize=config.getoption("--hypothesis-derandomize"),
deadline=deadline,
# TEMP FIX: Tests are randomly failing the data_too_large health
# check. Just suppress it for now. See
# https://github.com/data-apis/array-api-tests/issues/277
suppress_health_check=(HealthCheck.data_too_large,),
)
settings.load_profile("array-api-tests")
# CI
Expand Down

0 comments on commit 46d10db

Please sign in to comment.