Skip to content

Commit d01c456

Browse files
committed
fixing CI to install test deps
1 parent 7b80182 commit d01c456

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/big_endian.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
python -m pip install --break-system-packages --no-deps . -v --no-build-isolation --force-reinstall &&
141141
142142
# Install test dependencies separately
143-
python -m pip install --break-system-packages pytest pytest-run-parallel pytest-timeout &&
143+
python -m pip install --break-system-packages pytest pytest-run-parallel pytest-timeout mpmath &&
144144
145145
cd ..
146146
python -m pytest -vvv --color=yes --timeout=600 --tb=short quaddtype/tests/

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
LDFLAGS: "-fopenmp"
218218
run: |
219219
python -m build --sdist --no-isolation --outdir dist/
220-
pip install --no-build-isolation dist/*.tar.gz -v
220+
pip install --no-build-isolation dist/*.tar.gz[test] -v
221221
pytest -s tests
222222
working-directory: ./quaddtype
223223

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
working-directory: quaddtype
6666
run: |
6767
export LDFLAGS="-fopenmp"
68-
python -m pip install . -v --no-build-isolation
68+
python -m pip install .[test] -v --no-build-isolation
6969
7070
- name: Run quaddtype tests
7171
working-directory: quaddtype

0 commit comments

Comments
 (0)