File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1717 # Fail-fast skews the pass/fail ratio and seems to make pytest produce
1818 # incomplete JUnit XML results.
1919 fail-fast : false
20+ env :
21+ # Work around https://github.com/ni/nidaqmx-python/issues/862 - docs tox
22+ # env fails on rdss-nidaqmxbot-win-10-py32
23+ tox-args : ${{ matrix.configuration == 'win-10-py32' && '--skip-env docs' || '' }}
2024 timeout-minutes : 90
2125 steps :
2226 - name : Check out repo
3741 - name : Install dependencies
3842 run : poetry install
3943 - name : Run system tests
40- run : poetry run tox
44+ run : poetry run tox ${{ env.tox-args }}
4145 - name : Rename test results
4246 # TODO: Add Git Bash to the path on self-hosted Windows runners
4347 run : Get-ChildItem test_results/*.xml | Rename-Item -NewName { $_.Name -replace '.xml','-${{ matrix.configuration }}.xml' }
You can’t perform that action at this time.
0 commit comments