this repo has no description

fix: run pytest via python -m pytest

+3 -5
+3 -5
.tangled/workflows/build.yml
··· 29 29 command: | 30 30 echo "=== Installing pixi dependencies ===" 31 31 pixi install 32 - echo "=== Checking pixi env ===" 33 - ls -la .pixi/envs/default/bin/ | head -20 34 - echo "=== PATH ===" 35 - echo $PATH 32 + echo "=== Checking if Python works ===" 33 + .pixi/envs/default/bin/python --version || echo "Python failed!" 36 34 37 35 - name: "Run tests" 38 36 command: | 39 37 echo "=== Running tests ===" 40 - .pixi/envs/default/bin/pytest -v 38 + .pixi/envs/default/bin/python -m pytest -v tests/ 41 39 42 40 - name: "Run linters" 43 41 command: "pixi run pre-commit-run"