File tree Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -138,8 +138,6 @@ jobs:
138
138
139
139
steps :
140
140
141
- - uses : extractions/setup-just@v3
142
-
143
141
- name : Set up Python
144
142
uses : actions/setup-python@v5
145
143
with :
@@ -174,7 +172,7 @@ jobs:
174
172
WHEEL : ${{ matrix.wheel }}
175
173
176
174
- name : Run Test Suite
177
- run : just test
175
+ run : python3 -m pytest tests/
178
176
179
177
180
178
publish :
Original file line number Diff line number Diff line change 28
28
29
29
steps :
30
30
31
- - uses : extractions/setup-just@v3
32
-
33
31
- name : Set up Python
34
32
uses : actions/setup-python@v5
35
33
with :
54
52
run : python3 -m pip install -U -r req/converters.txt -r req/test.txt
55
53
56
54
- name : Run tests
57
- run : just test
55
+ run : python3 -m pytest tests/
Original file line number Diff line number Diff line change 25
25
26
26
steps :
27
27
28
- - uses : extractions/setup-just@v3
29
-
30
28
# AOTW, the slsa-verifier GH action does not support anything but Ubuntu x86_64.
31
29
- name : slsa-verifier
32
30
if : ${{ startsWith(matrix.os, 'ubuntu') && !endsWith(matrix.os, '-arm') }}
61
59
run : python3 -m pip install -v --no-build-isolation -e .
62
60
63
61
- name : Build docs
64
- run : just docs- build
62
+ run : python3 -m sphinx -b html docs/source docs/ build/html
65
63
66
64
- name : Run test suite
67
- run : just test
65
+ run : python3 -m pytest tests/
You can’t perform that action at this time.
0 commit comments