Skip to content

Commit ec6777f

Browse files
committed
github: Skip docs on win-10-py32
1 parent 7e73dcc commit ec6777f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/run_system_tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
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
@@ -37,7 +41,7 @@ jobs:
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' }

0 commit comments

Comments
 (0)