Skip to content

Commit

Permalink
Run tarpaulin on stable, move config to .tarpaulin.toml.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitshifter committed Jan 2, 2021
1 parent 6f26db3 commit f6c85dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,7 @@ jobs:
- uses: actions/checkout@v2
- name: Generate code coverage
run: |
cargo +nightly tarpaulin \
--no-default-features \
--features "std scalar-math bytemuck mint rand serde debug-glam-assert transform-types" \
--exclude-files src/f32/transform.rs \
--exclude-files benches/* \
--exclude-files tests/support/mod.rs \
cargo tarpaulin \
--timeout 120 \
--out Xml
Expand Down
7 changes: 7 additions & 0 deletions .tarpaulin.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[sse2_math]
features = "bytemuck mint rand serde debug-glam-assert"
exclude-files = ["src/f32/transform.rs", "benches/*", "tests/support/mod.rs"]

[scalar_math]
features = "scalar-math bytemuck mint rand serde debug-glam-assert"
exclude-files = ["src/f32/transform.rs", "benches/*", "tests/support/mod.rs"]

0 comments on commit f6c85dd

Please sign in to comment.