Skip to content

Commit 51c700c

Browse files
committed
Fix ci test
1 parent 9a53b1a commit 51c700c

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

.github/workflows/linux-build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ jobs:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4040
CHECK_LICENSE: true
4141

42-
- name: Install python deps
43-
run: |
44-
python -m pip install .[test]
45-
4642
- name: Build
4743
# We need to use gcc-10 to support c++ concepts
4844
env:
@@ -57,6 +53,7 @@ jobs:
5753
5854
- name: Test
5955
run: |
56+
python -m pip install pytest numpy scipy highsbox llvmlite tccbox
6057
python -m pytest tests -v
6158
6259
- name: Upload artifact

.github/workflows/macos-build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ jobs:
3838
CHECK_LICENSE: false
3939
ARCH: ${{ runner.arch }}
4040

41-
- name: Install python deps
42-
run: |
43-
python -m pip install .[test]
44-
4541
- name: Build
4642
run: |
4743
python -m pip list
@@ -52,6 +48,7 @@ jobs:
5248
5349
- name: Test
5450
run: |
51+
python -m pip install pytest numpy scipy highsbox llvmlite tccbox
5552
python -m pytest tests -k "highs or ipopt" -v
5653
5754
- name: Upload artifact

.github/workflows/windows-build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ jobs:
3838
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939
CHECK_LICENSE: true
4040

41-
- name: Install python deps
42-
run: |
43-
python -m pip install .[test]
44-
4541
- name: Build
4642
run: |
4743
python -m pip list
@@ -52,6 +48,7 @@ jobs:
5248
5349
- name: Test
5450
run: |
51+
python -m pip install pytest numpy scipy highsbox llvmlite tccbox
5552
python -m pytest tests -v
5653
5754
- name: Upload artifact

0 commit comments

Comments
 (0)