Skip to content

Commit

Permalink
Update python-app.yml
Browse files Browse the repository at this point in the history
install requirements for testing
  • Loading branch information
whotwagner committed Nov 6, 2023
1 parent 7dc8c9f commit 1f20d43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e .
if [ -f test/requirements.txt ]; then pip install -r test/requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit 1f20d43

Please sign in to comment.