Skip to content

Commit

Permalink
do not skip tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hlefebvr committed Feb 19, 2025
1 parent 98b234c commit 260672e
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:

Mosek:
name: "Mosek"
if: false
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -90,17 +89,16 @@ jobs:
MOSEKLM_LICENSE_FILE: ${{github.workspace}}/mosek/mosek.lic

- name: Build coverage report
run: lcov --directory . --capture --output-file coverage__$(uuidgen).info
run: lcov --directory . --capture --output-file coverage__Mosek.info

- uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage__$(uuidgen).info
path: coverage__Mosek.info

GLPK:
name: "GLPK"
runs-on: ubuntu-latest
if: false
strategy:
matrix:
test:
Expand Down Expand Up @@ -131,17 +129,16 @@ jobs:
run: ${{ matrix.test }}

- name: Build coverage report
run: lcov --directory . --capture --output-file coverage__$(uuidgen).info
run: lcov --directory . --capture --output-file coverage__GLPK.info

- uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage__$(uuidgen).info
path: coverage__GLPK.info

HiGHS:
name: "HiGHS"
runs-on: ubuntu-latest
if: false
strategy:
matrix:
test:
Expand Down Expand Up @@ -172,12 +169,12 @@ jobs:
run: ${{ matrix.test }}

- name: Build coverage report
run: lcov --directory . --capture --output-file coverage__$(uuidgen).info
run: lcov --directory . --capture --output-file coverage__HiGHS.info

- uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage__$(uuidgen).info
path: coverage__HiGHS.info

Coverage:
name: "Coverage Report"
Expand Down

0 comments on commit 260672e

Please sign in to comment.