Skip to content

Commit b6ed5d8

Browse files
attempt to fix pipelines (#1087)
1 parent 35c7f3e commit b6ed5d8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Prepare python environment
3737
run: |
3838
python -m pip install --upgrade pip
39-
python -m pip install --group coverage
39+
python -m pip install --group coverage || python -m pip install networkx cython pytest-cov numpy
4040
4141
- name: Install PySCIPOpt
4242
run: |

.github/workflows/integration-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Prepare python environment
3535
run: |
3636
python -m pip install --upgrade pip
37-
python -m pip install --group test-full
37+
python -m pip install --group test-full || python -m pip install networkx pytest-cov numpy
3838
3939
- name: Install PySCIPOpt
4040
run: python -m pip install .
@@ -70,7 +70,7 @@ jobs:
7070
shell: powershell
7171
run: |
7272
python -m pip install --upgrade pip
73-
python -m pip install --group test-full
73+
python -m pip install --group test-full || python -m pip install networkx pytest-cov numpy
7474
7575
- name: Install PySCIPOpt
7676
shell: powershell
@@ -107,7 +107,7 @@ jobs:
107107
- name: Prepare python environment
108108
run: |
109109
python -m pip install --upgrade pip
110-
python -m pip install --group test-full
110+
python -m pip install --group test-full || python -m pip install networkx pytest-cov pytest numpy
111111
112112
- name: Install PySCIPOpt
113113
run: |

.github/workflows/update-packages-and-documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Prepare python environment
5050
run: |
5151
python -m pip install --upgrade pip
52-
python -m pip install --group test-full
52+
python -m pip install --group test-full || python -m pip install wheel cython networkx pytest-cov
5353
5454
- name: Install PySCIPOpt
5555
run: python -m pip install .
@@ -86,7 +86,7 @@ jobs:
8686
shell: powershell
8787
run: |
8888
python -m pip install --upgrade pip
89-
python -m pip install --group test-full
89+
python -m pip install --group test-full || python -m pip install wheel cython networkx pytest-cov
9090
- name: Install PySCIPOpt
9191
shell: powershell
9292
run: |

0 commit comments

Comments
 (0)