Skip to content

Commit

Permalink
tests: Use 100 test rounds per method on pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
deajan committed Dec 28, 2023
1 parent 8074e5a commit 56228ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_command_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ def test_read_file():
for method in methods:
# pypy is quite slow with poller method on github actions.
# Lets lower rounds
max_rounds = 50 if is_pypy() else 1000
print("GOING FOR ROUNDS:", max_rounds)
max_rounds = 100 if is_pypy() else 1000
print("\nSetting up test_read_file for {} rounds".format(max_rounds))
for round in range(0, max_rounds):
print('Comparaison round {} with method {}'.format(round, method))
exit_code, output = command_runner(PRINT_FILE_CMD, shell=True, method=method)
Expand Down

0 comments on commit 56228ef

Please sign in to comment.