Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Add dependency in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Shen committed Oct 13, 2020
1 parent 6cb8fa2 commit 6489642
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
Expand All @@ -39,4 +40,4 @@ jobs:
pytest
- name: Display test coverage
run: |
python -m pytest --cov=. tests/
pytest --cov=. tests/

0 comments on commit 6489642

Please sign in to comment.