Skip to content

Commit fcfb6f5

Browse files
committed
Changing max_examples=5 to max_examples=2
1 parent d680f6c commit fcfb6f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

axelrod/tests/integration/test_matches.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class TestMatchOutcomes(unittest.TestCase):
2929
),
3030
turns=integers(min_value=1, max_value=20),
3131
)
32-
@settings(max_examples=5, deadline=None)
32+
@settings(max_examples=2, deadline=None)
3333
def test_outcome_repeats(self, strategies, turns):
3434
"""A test that if we repeat 3 matches with deterministic and well
3535
behaved strategies then we get the same result"""
@@ -45,7 +45,7 @@ def test_outcome_repeats(self, strategies, turns):
4545
turns=integers(min_value=1, max_value=20),
4646
seed=integers(min_value=0, max_value=4294967295),
4747
)
48-
@settings(max_examples=5, deadline=None)
48+
@settings(max_examples=2, deadline=None)
4949
def test_outcome_repeats_stochastic(self, strategies, turns, seed):
5050
"""a test to check that if a seed is set stochastic strategies give the
5151
same result"""

0 commit comments

Comments
 (0)