Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27bf23c + a6c623e commit e337e99Copy full SHA for e337e99
.github/workflows/cygwin-test.yml
@@ -10,6 +10,14 @@ jobs:
10
runs-on: windows-latest
11
12
strategy:
13
+ matrix:
14
+ selection: [fast, perf]
15
+ include:
16
+ - selection: fast
17
+ additional-pytest-args: --ignore=test/performance
18
+ - selection: perf
19
+ additional-pytest-args: test/performance
20
+
21
fail-fast: false
22
23
env:
@@ -85,6 +93,6 @@ jobs:
85
93
python --version
86
94
python -c 'import os, sys; print(f"sys.platform={sys.platform!r}, os.name={os.name!r}")'
87
95
88
- - name: Test with pytest
96
+ - name: Test with pytest (${{ matrix.additional-pytest-args }})
89
97
run: |
90
- pytest --color=yes -p no:sugar --instafail -vv
98
+ pytest --color=yes -p no:sugar --instafail -vv ${{ matrix.additional-pytest-args }}
0 commit comments