diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cc4046e..552e62c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,8 +9,6 @@ jobs: with: python-version: '3.11' - name: Install test deps - run: | - pip install httpx[http2] Pillow pytest - pip install -e . --no-deps + run: pip install httpx[http2] Pillow pytest - name: Run tests - run: pytest tests/ -v + run: PYTHONPATH=. pytest tests/ -v