Skip to content

Commit 9735fd4

Browse files
committed
No IT for Windows and MacOS targets
1 parent a6049a1 commit 9735fd4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,12 @@ jobs:
5353

5454
- name: Run only UNIT tests for Windows
5555
if: ${{ matrix.os == 'windows-latest' }}
56-
run: cargo test --verbose --workspace --target=x86_64-pc-windows-msvc --exclude tests --all-features --no-fail-fast -- --show-output
56+
run: |
57+
cargo test --verbose --workspace --lib --target=x86_64-pc-windows-msvc --all-features --no-fail-fast -- --show-output
58+
cargo test --verbose --workspace --doc --target=x86_64-pc-windows-msvc --all-features --no-fail-fast -- --show-output
5759
5860
- name: Run only UNIT tests for MacOS
5961
if: ${{ matrix.os == 'MacOS-latest' }}
60-
run: cargo test --verbose --workspace --exclude tests --all-features --no-fail-fast -- --show-output
62+
run: |
63+
cargo test --verbose --workspace --lib --all-features --no-fail-fast -- --show-output
64+
cargo test --verbose --workspace --doc --all-features --no-fail-fast -- --show-output

0 commit comments

Comments
 (0)