fix: add PYTHONPATH to checkPhase so tests run during nix build
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Celes Renata
2026-08-02 14:07:06 -07:00
parent 0192b1dba5
commit 04f265767e
+1
View File
@@ -30,6 +30,7 @@
]; ];
doCheck = true; doCheck = true;
checkPhase = '' checkPhase = ''
export PYTHONPATH="${toString ./src}:$PYTHONPATH"
python -m pytest tests/ -x --tb=short -q python -m pytest tests/ -x --tb=short -q
''; '';
pyproject = true; pyproject = true;