Skip to content

Commit 943ad18

Browse files
committed
Fix ci
1 parent 8b80ad0 commit 943ad18

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/linux-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Install python deps
4343
run: |
44-
python -m pip install pytest numpy highsbox llvmlite tccbox
44+
python -m pip install .[test]
4545
4646
- name: Build
4747
# We need to use gcc-10 to support c++ concepts

.github/workflows/macos-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Install python deps
4242
run: |
43-
python -m pip install pytest numpy highsbox llvmlite tccbox
43+
python -m pip install .[test]
4444
4545
- name: Build
4646
run: |

.github/workflows/windows-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Install python deps
4242
run: |
43-
python -m pip install pytest numpy highsbox llvmlite tccbox
43+
python -m pip install .[test]
4444
4545
- name: Build
4646
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ Homepage = "https://github.com/metab0t/pyoptinterface"
2121

2222
[project.optional-dependencies]
2323
matrix = ["numpy", "scipy"]
24-
test = ["pytest", "numpy", "scipy"]
2524
highs = ["highsbox"]
2625
nlp = ["llvmlite", "tccbox"]
26+
test = ["pytest", "numpy", "scipy", "highsbox", "llvmlite", "tccbox"]
2727

2828
[tool.scikit-build]
2929
editable.rebuild = true

0 commit comments

Comments
 (0)