Skip to content

Commit 3dc0afb

Browse files
committed
Try to fix run all tests on windows
1 parent 5836d86 commit 3dc0afb

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/run_all_tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,18 @@ jobs:
7777
python -m build
7878
ls -1 dist
7979
80-
- name: Test installation from a wheel
80+
- name: Test installation from a wheel (POSIX)
81+
if: ${{ matrix.os != 'windows-latest' }}
8182
run: |
8283
python -m venv test-wheel-env
8384
source test-wheel-env/bin/activate
8485
python -m pip install dist/*-none-any.whl
8586
python -c "import ndx_franklab_novela"
87+
88+
- name: Test installation from a wheel (windows)
89+
if: ${{ matrix.os == 'windows-latest' }}
90+
run: |
91+
python -m venv test-wheel-env
92+
source test-wheel-env/Scripts/activate
93+
python -m pip install dist/*-none-any.whl
94+
python -c "import ndx_franklab_novela"

0 commit comments

Comments
 (0)