Skip to content

Commit

Permalink
ci: Do not consider some directories for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Luni-4 authored and shssoichiro committed May 12, 2022
1 parent de41e99 commit cc49bc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/rav1e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,9 @@ jobs:
run: |
grcov . --binary-path ./target/x86_64-unknown-linux-gnu/debug/ -s . \
-t lcov --branch --ignore-not-existing --ignore "/*" \
--ignore "../*" -o lcov.info
--ignore "../*" --ignore "target/*" --ignore "examples/*" \
--ignore "tests/*" --ignore "src/test_encode_decode/*" \
-o lcov.info
- name: Stop sccache server
run: |
sccache --stop-server
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aom_test
target
target/
Cargo.lock
*.y4m
*.ivf
Expand Down

0 comments on commit cc49bc4

Please sign in to comment.