Skip to content

Commit

Permalink
Run PEP 561 tests sequentially to avoid race conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
erikkemperman committed May 22, 2022
1 parent 19e9f21 commit b68aac5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,15 @@
'pytest-slow': ['pytest', '-q', '-k', ' or '.join(
[SAMPLES,
TYPESHED,
PEP561,
DAEMON,
MYPYC_EXTERNAL,
MYPYC_COMMAND_LINE,
ERROR_STREAM])],

# Test cases that might cause race conditions when run in parallel
'pytest-slower': ['pytest', '-q', '-n0', '-k', ' or '.join(
[PEP561])],

# Test cases to run in typeshed CI
'typeshed-ci': ['pytest', '-q', '-k', ' or '.join([CMDLINE,
EVALUATION,
Expand Down

0 comments on commit b68aac5

Please sign in to comment.