Skip to content

Commit

Permalink
mark new tests as flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
Autoplectic committed Nov 8, 2018
1 parent a49c6a5 commit 751eaa8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
)


@pytest.mark.flaky(reruns=5)
@pytest.mark.parametrize(['dist', 'value'], [
(giant_bit(3, 2), 0.0),
(n_mod_m(3, 2), 0.0)
Expand All @@ -23,6 +24,7 @@ def test_tpitc1(dist, value):
assert tpitc == pytest.approx(value)


@pytest.mark.flaky(reruns=5)
@pytest.mark.parametrize(['dist', 'value'], [
(giant_bit(3, 2), 0.0),
(n_mod_m(3, 2), 0.0)
Expand All @@ -34,6 +36,7 @@ def test_tpidtc1(dist, value):
assert tpidtc == pytest.approx(value)


@pytest.mark.flaky(reruns=5)
@pytest.mark.parametrize(['dist', 'value'], [
(giant_bit(3, 2), 0.0),
(n_mod_m(3, 2), 0.0)
Expand Down

0 comments on commit 751eaa8

Please sign in to comment.