Skip to content

Commit

Permalink
Add list of packages in the CI env to output
Browse files Browse the repository at this point in the history
  • Loading branch information
jcpunk authored and mambelli committed May 21, 2021
1 parent b9cb197 commit 50a8e26
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,21 @@ jobs:
python3 -c 'import platform; print(platform.python_implementation())'
python3 -m pip cache dir
- name: Install dependencies
- name: Ensure pip/setuptools is up to date
run: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade wheel setuptools
python3 -m pip install --upgrade pytest
- name: Install dependencies (runtime)
run: |
python3 -m pip install -e . --user
python3 -m pip list --user
- name: Install dependencies (unit tests)
run: |
python3 -m pip install --upgrade pytest
python3 -m pip install -e .[develop] --user
python3 -m pip list --user
- name: Ensure version.py exists
run: python3 setup.py bdist_wheel
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,4 @@ venv.bak/

.DS_Store
*.swp
*.swo

0 comments on commit 50a8e26

Please sign in to comment.