Skip to content

Commit 8d11009

Browse files
committed
Exclude performance tests from MacOS builds
- times are shaky, maybe due to current maintenance
1 parent 0ba2e0e commit 8d11009

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,10 @@ jobs:
8181
shell: bash
8282
- name: Run performance tests
8383
run: |
84-
export TEST_PERFORMANCE=1
85-
python -m pyfakefs.tests.performance_test
84+
if [[ '${{ matrix.os }}' != 'macOS-latest' ]]; then
85+
export TEST_PERFORMANCE=1
86+
python -m pyfakefs.tests.performance_test
87+
fi
8688
shell: bash
8789

8890
dockertests:

0 commit comments

Comments
 (0)