Skip to content

Commit

Permalink
Changed some test parameters. Tests passing
Browse files Browse the repository at this point in the history
  • Loading branch information
Julio Mateos Langerak committed Feb 9, 2024
1 parent 514cbd5 commit 60f6536
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unit/samples/test_field_illumination.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_field_illumination_analysis_instantiation(dataset):


@given(mm_st.st_field_illumination_dataset())
@settings(max_examples=10, suppress_health_check=[HealthCheck.too_slow])
@settings(max_examples=10, suppress_health_check=[HealthCheck.too_slow], deadline=10000)
def test_field_illumination_analysis_run(dataset):
assert not dataset["unprocessed_analysis"].processed
assert dataset["unprocessed_analysis"].run()
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/samples/test_psf_beads.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_psf_beads_analysis_instantiation(dataset):


@given(st_mm.st_psf_beads_dataset())
@settings(max_examples=10, suppress_health_check=[HealthCheck.too_slow], deadline=None)
@settings(max_examples=10, suppress_health_check=[HealthCheck.too_slow], deadline=10000)
def test_psf_beads_analysis_run(dataset):
assert not dataset["unprocessed_analysis"].processed
assert dataset["unprocessed_analysis"].run()
Expand Down

0 comments on commit 60f6536

Please sign in to comment.