Skip to content

Commit

Permalink
Drop binary integration test from coverage
Browse files Browse the repository at this point in the history
It causes problems and makes no sense to collect anyways
because it just calls precompiled binaries from rust code.

We now need two calls to `cargo test` because `--doc` can not
be combined with any other testing target.
  • Loading branch information
FreezyLemon committed Sep 14, 2024
1 parent 7ab0de1 commit eca2b49
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/rav1e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,11 @@ jobs:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: >
${{ env.SDE_PATH }}/sde -icx --
run: |
cargo test --workspace --verbose --target x86_64-unknown-linux-gnu \
cargo test --workspace --target x86_64-unknown-linux-gnu \
--lib --test doctests \
--features=decode_test,decode_test_dav1d,quick_test
cargo test --workspace --target x86_64-unknown-linux-gnu \
--doc \
--features=decode_test,decode_test_dav1d,quick_test
- name: Run unit tests
if: matrix.conf == 'no-asm-tests'
Expand Down

0 comments on commit eca2b49

Please sign in to comment.