Commit 658858e975835476f21130054461f4e3f88e021a
1 parent
6502a777
Add debug output to workflow preparation
Want this to check why requirements installation does not happen as expected
Showing
1 changed file
with
2 additions
and
0 deletions
.github/workflows/unittests.yml
| ... | ... | @@ -22,6 +22,8 @@ jobs: |
| 22 | 22 | python-version: ${{ matrix.python-version }} |
| 23 | 23 | - name: Install dependencies |
| 24 | 24 | run: | |
| 25 | + python -c "import sys; import platform; print(sys.version); print(sys.platform); print(platform.python_implementation()); print(platform.system())" | |
| 26 | + cat requirements.txt | |
| 25 | 27 | python -m pip install --upgrade pip |
| 26 | 28 | pip install -r requirements.txt |
| 27 | 29 | - name: Run unittests | ... | ... |