diff options
| author | Sebastian Berg <sebastianb@nvidia.com> | 2023-04-16 17:36:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-16 17:36:55 +0200 |
| commit | f5ff446c49e21411bac2320cd1d962debd9d1abf (patch) | |
| tree | 3993b0d700f1234386cd545c48fbe5eb0231dc26 /numpy | |
| parent | a578b70a53df4bbc96137042ead916f0a9daf891 (diff) | |
| parent | 6630fd1db5ff0f116062b870a6393bf0285d3ec8 (diff) | |
| download | numpy-f5ff446c49e21411bac2320cd1d962debd9d1abf.tar.gz | |
Merge pull request #23596 from HaoZeke/hypothesisTestUpdate
MAINT: Update conftest for newer hypothesis versions
Diffstat (limited to 'numpy')
| -rw-r--r-- | numpy/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/conftest.py b/numpy/conftest.py index d450cc99b..f1a3eda98 100644 --- a/numpy/conftest.py +++ b/numpy/conftest.py @@ -30,7 +30,7 @@ hypothesis.settings.register_profile( hypothesis.settings.register_profile( name="np.test() profile", deadline=None, print_blob=True, database=None, derandomize=True, - suppress_health_check=hypothesis.HealthCheck.all(), + suppress_health_check=list(hypothesis.HealthCheck), ) # Note that the default profile is chosen based on the presence # of pytest.ini, but can be overridden by passing the |
