Skip to content

Commit bc9c71e

Browse files
committed
Reduce number of samples from the hypothesis space
Mainly because the test runs for long. I will have to look into what an appropriate number is, but I suspect 500 will still find most of the failures that 5000 samples would.
1 parent 9609d99 commit bc9c71e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/routers/openml/datasets_list_datasets_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def test_list_data_quality(quality: str, range_: str, count: int, py_api: TestCl
225225

226226
@pytest.mark.slow
227227
@hypothesis.settings( # type: ignore[untyped-decorator] # 108
228-
max_examples=5000,
228+
max_examples=500, # This number needs to be better motivated
229229
suppress_health_check=[hypothesis.HealthCheck.function_scoped_fixture],
230230
deadline=None,
231231
)

0 commit comments

Comments
 (0)