Skip to content

Commit f3c8525

Browse files
committed
Inspect environment and requirements
1 parent 6edfb87 commit f3c8525

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,12 @@ jobs:
5757
- name: Install application
5858
run: |
5959
python -m pip install .
60-
python -m pip freeze # dbg
60+
61+
- name: Inspect environment and requirements
62+
run: |
63+
python --version
64+
python -m pip --version
65+
python -m pip freeze
6166
6267
- name: Remove sources dir to check installation for Linux & MAC
6368
if: runner.os != 'Windows'
@@ -124,9 +129,12 @@ jobs:
124129
run: |
125130
python -m pip install --upgrade pip
126131
python -m pip install --requirement requirements.txt
127-
python -m pip freeze # dbg
128-
python -m pip --version # dbg
129-
python --version # dbg
132+
133+
- name: Inspect environment and requirements
134+
run: |
135+
python --version
136+
python -m pip --version
137+
python -m pip freeze
130138
131139
- name: UnitTest with pytest and coverage
132140
run: |

0 commit comments

Comments
 (0)