Skip to content

Commit

Permalink
TST: call pip list instead of python -c
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Apr 9, 2024
1 parent 11f37b3 commit b8f8677
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,10 @@ jobs:
- name: Install graphviz dependency
if: "endsWith(matrix.tox_env, 'build_docs')"
run: sudo apt-get -y install graphviz
- name: Print Python, pip, setuptools, and tox versions
- name: Print Python env
run: |
python -c "import sys; print(f'Python {sys.version}')"
python -c "import pip; print(f'pip {pip.__version__}')"
python -c "import setuptools; print(f'setuptools {setuptools.__version__}')"
python -c "import tox; print(f'tox {tox.__version__}')"
python --version
python -m pip list
- name: Run tests
if: "! matrix.use_remote_data"
run: |
Expand Down

0 comments on commit b8f8677

Please sign in to comment.