Skip to content

Commit 387ff91

Browse files
committed
build: avoid a windows issue
1 parent c3a8d7e commit 387ff91

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/python.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
- run: cd ../argunparse && pip install -r requirements_test.txt && python setup.py build && cd -
3030
- run: git clone https://github.com/python-semver/python-semver ../semver
3131
- run: cd ../semver && python -m build && cd -
32-
- run: pip install jupyter # example package that uses metadata.json
32+
- if: matrix.os != 'windows-latest'
33+
run: pip install jupyter # example package that uses metadata.json
3334
- run: python -m coverage run --branch --source . -m unittest -v
3435
- run: python -m coverage run --append --branch --source . -m unittest -v test.test_version
3536
env:

0 commit comments

Comments
 (0)