diff --git a/tests/test_command_runner.py b/tests/test_command_runner.py index d4dbc5d..42a6bd4 100644 --- a/tests/test_command_runner.py +++ b/tests/test_command_runner.py @@ -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)