File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -429,14 +429,8 @@ jobs:
429429 python -m pip install .
430430
431431 - name : run tests under pytest-run-parallel
432- if : runner.os == 'Windows'
433432 run : |
434- python -m pytest --parallel-threads=4 src/c
435-
436- - name : run tests under pytest-run-parallel
437- if : runner.os != 'Windows'
438- run : |
439- python -m pytest --parallel-threads=4
433+ python -m pytest --parallel-threads=4 --skip-thread-unsafe=True
440434
441435 clang_TSAN :
442436 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11import pytest , sys
2+
3+ pytestmark = [
4+ pytest .mark .thread_unsafe (reason = "Workers would share a build directory" ),
5+ ]
6+
27try :
38 # comment out the following line to run this test.
49 # the latest on x86-64 linux: https://github.com/libffi/libffi/issues/574
You can’t perform that action at this time.
0 commit comments