Skip to content

Commit

Permalink
Debugging GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
paynejason committed Oct 27, 2023
1 parent d9fbb9e commit 6ad92b1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ 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 -r requirements.txt
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand All @@ -36,4 +36,5 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
python -m unittest test/simple_tests
cd test
python -m unittest simple_tests

0 comments on commit 6ad92b1

Please sign in to comment.