Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhanercan committed Apr 13, 2024
2 parents 7435e6f + d8198a4 commit 7845ad2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 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
if [ -f \src\requirements.txt ]; then pip install -r \src\requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand All @@ -36,4 +36,4 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest --collect-only *.py
pytest --collect-only -v

0 comments on commit 7845ad2

Please sign in to comment.