diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index f74121f..13c55c5 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,8 +22,11 @@ jobs: python -m pip install --upgrade pip pip install pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Install pytest_html + run: | + pip install pytest_html - name: Run tests with pytest env: COOKIE: ${{ secrets.COOKIE }} run: | - pytest \ No newline at end of file + pytest