diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index ae4ea563..020714c8 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -21,7 +21,7 @@ jobs: python-version: '3.x' - name: Install dependencies - run: cd app/ && pip3 install -r requirements.txt + run: cd app/ || pip3 install -r requirements.txt - name: Execute tests - run: cd app/ && python3 -m pytest -v + run: cd app/ || python3 -m pytest -v