From e6c56bf758981443610bbc7e951e9ff6e1c1a39a Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 15:18:03 +0000 Subject: [PATCH] fix: correct PYTHONPATH for CI compatibility --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index fd4f3bc..1dd3d64 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: pip install -e ".[test]" - name: Run tests - run: PYTHONPATH=/app/src:$PYTHONPATH pytest tests/unit/ tests/integration/ -v --tb=short + run: PYTHONPATH=src:$PYTHONPATH pytest tests/unit/ tests/integration/ -v --tb=short lint: runs-on: ubuntu-latest @@ -48,7 +48,7 @@ jobs: python-version: '3.11' - name: Install type checker - run: pip install mypy>=1.0.0 types-toml + run: pip install mypy>=1.0.0 - name: Run mypy type checker run: mypy src/depcheck/ --ignore-missing-imports