Skip to content

Commit c665542

Browse files
authored
Merge pull request #102 from pytest-dev/python_version_reporting_step
Add step to report python versions
2 parents 5d12899 + 78d8cb0 commit c665542

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,22 @@ jobs:
8585
with:
8686
python-version: ${{ matrix.python.action }}
8787
architecture: x64
88+
- name: Report Python information
89+
shell: bash
90+
run: |
91+
python -c 'import sys; print(sys.version)'
92+
echo
93+
echo " <=======>"
94+
echo
95+
pip --version
96+
echo
97+
echo " <=======>"
98+
echo
99+
pip list --no-python-version-warning
100+
echo
101+
echo " <=======>"
102+
echo
103+
pip freeze --all --no-python-version-warning
88104
- name: Install Linux Qt5 dependencies
89105
if: matrix.os.python_platform == 'linux' && matrix.reactor.dependencies == 'qt5'
90106
run: |

0 commit comments

Comments
 (0)