From a632f1b9614b9924c348bd9f787d068e06263646 Mon Sep 17 00:00:00 2001 From: pax Date: Fri, 10 Apr 2026 00:06:35 -0500 Subject: [PATCH] ci: use PYTHONPATH instead of editable install --- .github/workflows/tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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