tangled
alpha
login
or
join now
nandi.latha.org
/
pixi-skills
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
fix: run pytest via python -m pytest
nandi
3 weeks ago
04a14aa5
067bb7db
0/1
build.yml
failed
4s
+3
-5
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
build.yml
+3
-5
.tangled/workflows/build.yml
···
29
29
command: |
30
30
echo "=== Installing pixi dependencies ==="
31
31
pixi install
32
32
-
echo "=== Checking pixi env ==="
33
33
-
ls -la .pixi/envs/default/bin/ | head -20
34
34
-
echo "=== PATH ==="
35
35
-
echo $PATH
32
32
+
echo "=== Checking if Python works ==="
33
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
40
-
.pixi/envs/default/bin/pytest -v
38
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"