File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : test
1+ name : signed
22
33on :
44 push :
2626
2727 - name : Run tests
2828 run : |
29- pixi run pytest -v src/mechdriver/tests/
29+ pixi run pytest -v src/mechdriver/tests/ -k "signature"
Original file line number Diff line number Diff line change 1+ name : test-other
2+
3+ on :
4+ push :
5+ pull_request :
6+ workflow_dispatch :
7+
8+ jobs :
9+ test :
10+ runs-on : ubuntu-latest
11+ strategy :
12+ fail-fast : false
13+
14+ steps :
15+ # Repository
16+ - name : Checkout the code
17+ uses : actions/checkout@v4
18+
19+ - name : Set up Pixi
20+ uses : prefix-dev/setup-pixi@v0.8.1
21+
22+ - name : Pip install
23+ run : |
24+ yes Y | pixi run download Auto-Mech no http
25+ pixi run install
26+
27+ - name : Run tests
28+ run : |
29+ pixi run pytest -v src/mechdriver/tests/ -k "not signature and not prompt"
Original file line number Diff line number Diff line change 1+ name : test-prompt
2+
3+ on :
4+ push :
5+ pull_request :
6+ workflow_dispatch :
7+
8+ jobs :
9+ test :
10+ runs-on : ubuntu-latest
11+ strategy :
12+ fail-fast : false
13+
14+ steps :
15+ # Repository
16+ - name : Checkout the code
17+ uses : actions/checkout@v4
18+
19+ - name : Set up Pixi
20+ uses : prefix-dev/setup-pixi@v0.8.1
21+
22+ - name : Pip install
23+ run : |
24+ yes Y | pixi run download Auto-Mech no http
25+ pixi run install
26+
27+ - name : Run tests
28+ run : |
29+ pixi run pytest -v src/mechdriver/tests/ -k "prompt"
You can’t perform that action at this time.
0 commit comments