Skip to content

Commit

Permalink
fix: corrected test workflow
Browse files Browse the repository at this point in the history
the pull_request.yml workflow did not use the requirements_tests.txt file to install the needed requirements
  • Loading branch information
201st-Luka committed Aug 19, 2023
1 parent 10dfd2b commit 834c5b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install flake8
pip install -r requirements_tests.txt
- name: linting
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
Expand Down

0 comments on commit 834c5b5

Please sign in to comment.