Skip to content

Commit

Permalink
Don't use coverage cfg (#126)
Browse files Browse the repository at this point in the history
* Don't use `coverage` cfg

* Install missing packages
  • Loading branch information
Zoxc authored Oct 29, 2023
1 parent 4fbe6f4 commit 646a1fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get -y update
sudo apt-get -y install clang libwayland-dev libxkbcommon-x11-dev pkg-config libvulkan-dev
sudo apt-get -y install clang libwayland-dev libxkbcommon-x11-dev pkg-config libvulkan-dev libxcb-shape0-dev libxcb-xfixes0-dev
- name: Update toolchain & add llvm-tools
run: |
Expand All @@ -52,7 +52,7 @@ jobs:
uses: taiki-e/install-action@cargo-llvm-cov

- name: Run tests and coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
run: cargo llvm-cov --no-cfg-coverage --all-features --workspace --lcov --output-path lcov.info

- name: Run doc tests
run: cargo test --doc --workspace
Expand Down

0 comments on commit 646a1fb

Please sign in to comment.