We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e11c8df + d0620af commit c90c009Copy full SHA for c90c009
1 file changed
.github/workflows/build_wheels.yml
@@ -203,13 +203,15 @@ jobs:
203
- name: Install build dependencies
204
run: |
205
python -m pip install --upgrade pip
206
- python -m pip install build
+ python -m pip install build pytest
207
208
- - name: Build SDist
+ - name: Build SDist & test sdist
209
env:
210
LDFLAGS: "-fopenmp"
211
212
python -m build --sdist --outdir dist/
213
+ pip install dist/*.tar.gz -v
214
+ pytest -s tests
215
working-directory: ./quaddtype
216
217
- name: Upload SDist artifact
0 commit comments