diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 8e6fe25..b833369 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -29,9 +29,9 @@ jobs: run: | python -m pip install --upgrade pip pip install pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + pip install -r requirements.txt - name: Test with pytest run: | cd tests - pytest --pyargs . + python -m pytest --pyargs .