-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change test order to (hopefully) fix coverage
- Loading branch information
1 parent
aba42a5
commit 83f4334
Showing
2 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,10 @@ jobs: | |
compiler: msvc | ||
vcvarsall: true | ||
|
||
- name: Run tests (native runner) | ||
if: ${{ !contains(matrix.os, 'windows') }} | ||
run: make c_native_test | ||
|
||
- name: Run tests (ubuntu-latest) | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
run: make c_test COV=true COMPILER_OVERRIDE=${{ matrix.compiler }} NO_CLEANUP=true | ||
|
@@ -81,10 +85,6 @@ jobs: | |
NO_OPTIONAL_TESTS: true | ||
COMPILER_OVERRIDE: clang | ||
|
||
- name: Run tests (native runner) | ||
if: ${{ !contains(matrix.os, 'windows') }} | ||
run: make c_native_test | ||
|
||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters