Skip to content

Commit

Permalink
Temporarily disable running tests in parallel
Browse files Browse the repository at this point in the history
... so that the Python 3.11 test job can succeed for the 0.5.4 release.

pytest-dev/pytest#3216 (comment)
  • Loading branch information
brechtm committed Jun 17, 2022
1 parent bd4b415 commit 95ca26c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


if __name__ == '__main__':
command = ['py.test', '-n', 'auto']
command = ['py.test', '-n', '0']
if os.environ.get('WITH_COVERAGE') == '1':
command.extend(['--cov=rinoh', '--cov-report='])
if os.environ.get('BASETEMP'):
Expand Down

0 comments on commit 95ca26c

Please sign in to comment.