Skip to content

Commit

Permalink
Update the flaky params.
Browse files Browse the repository at this point in the history
  • Loading branch information
fsaad committed Feb 25, 2024
1 parent 10120b0 commit fe65183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_fldr.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_chisquare_pval(p_target, samples):

num_failed_py = 0
@pytest.mark.parametrize('a', a_list)
@pytest.mark.flaky(max_runs=3, min_passes=1)
@pytest.mark.flaky(max_runs=5, min_passes=1)
def test_fldr_sampler_py(a):
global num_failed_py
m = sum(a)
Expand All @@ -53,7 +53,7 @@ def test_fldr_sampler_py(a):

num_failed_c = 0
@pytest.mark.parametrize('a', a_list)
@pytest.mark.flaky(max_runs=3, min_passes=1)
@pytest.mark.flaky(max_runs=5, min_passes=1)
def test_fldr_sampler_c(a):
global num_failed_c
m = sum(a)
Expand Down

0 comments on commit fe65183

Please sign in to comment.