From 834c5b56695cbf08d6194be15de03dba285eb95e Mon Sep 17 00:00:00 2001 From: 201st-Luka Date: Sat, 19 Aug 2023 12:28:25 +0200 Subject: [PATCH] fix: corrected test workflow the pull_request.yml workflow did not use the requirements_tests.txt file to install the needed requirements --- .github/workflows/pull_request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index a329d65..662edb3 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -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