diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 635337c..a365327 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -19,6 +19,11 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Install Chrome and Selenium run: | @@ -38,6 +43,6 @@ jobs: unzip chromedriver_linux64.zip && chmod +x chromedriver && sudo mv chromedriver /usr/local/bin chromedriver -version - - name: Test with pytest + - name: Test with Pytest run: | python -m pytest tests/