Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Prepare python environment
run: |
python -m pip install --upgrade pip
python -m pip install --group coverage
python -m pip install --group coverage || python -m pip install networkx cython pytest-cov numpy

- name: Install PySCIPOpt
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Prepare python environment
run: |
python -m pip install --upgrade pip
python -m pip install --group test-full
python -m pip install --group test-full || python -m pip install networkx pytest-cov numpy

- name: Install PySCIPOpt
run: python -m pip install .
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
shell: powershell
run: |
python -m pip install --upgrade pip
python -m pip install --group test-full
python -m pip install --group test-full || python -m pip install networkx pytest-cov numpy

- name: Install PySCIPOpt
shell: powershell
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Prepare python environment
run: |
python -m pip install --upgrade pip
python -m pip install --group test-full
python -m pip install --group test-full || python -m pip install networkx pytest-cov pytest numpy

- name: Install PySCIPOpt
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-packages-and-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Prepare python environment
run: |
python -m pip install --upgrade pip
python -m pip install --group test-full
python -m pip install --group test-full || python -m pip install wheel cython networkx pytest-cov

- name: Install PySCIPOpt
run: python -m pip install .
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
shell: powershell
run: |
python -m pip install --upgrade pip
python -m pip install --group test-full
python -m pip install --group test-full || python -m pip install wheel cython networkx pytest-cov
- name: Install PySCIPOpt
shell: powershell
run: |
Expand Down
Loading