Skip to content

Commit

Permalink
Merge 9537c6f into 4fb14c8
Browse files Browse the repository at this point in the history
  • Loading branch information
drvinceknight committed Aug 14, 2018
2 parents 4fb14c8 + 9537c6f commit 902a81c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions axelrod/tests/unit/test_tournament.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,8 @@ def test_parallel_play(self):
name=self.test_name,
players=players,
game=self.game,
turns=20,
repetitions=self.test_repetitions)
turns=2,
repetitions=2)
scores = tournament.play(processes=2, progress_bar=False).scores
self.assertEqual(len(scores), len(players))

Expand All @@ -446,6 +446,7 @@ def test_parallel_play_with_writing_to_file(self):
turns=axelrod.DEFAULT_TURNS,
repetitions=self.test_repetitions)

print("foo")
results = tournament.play(processes=2, progress_bar=False,
filename=self.filename)
self.assertIsInstance(results, axelrod.ResultSet)
Expand Down

0 comments on commit 902a81c

Please sign in to comment.