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.
1 parent 5836d86 commit 3dc0afbCopy full SHA for 3dc0afb
.github/workflows/run_all_tests.yml
@@ -77,9 +77,18 @@ jobs:
77
python -m build
78
ls -1 dist
79
80
- - name: Test installation from a wheel
+ - name: Test installation from a wheel (POSIX)
81
+ if: ${{ matrix.os != 'windows-latest' }}
82
run: |
83
python -m venv test-wheel-env
84
source test-wheel-env/bin/activate
85
python -m pip install dist/*-none-any.whl
86
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