Skip to content

Commit

Permalink
Fix empty tarpaulin run (#647)
Browse files Browse the repository at this point in the history
Every run of tarpaulin ended with a 0/0 lines covered report.
It seems it doesn't include the project automatically, or (maybe?) excludes all files by default.
It can be solved changing the configuration on .tarpaulin.toml
  • Loading branch information
MegaRedHand authored Dec 12, 2022
1 parent f5bb7dc commit fd7edb4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .tarpaulin.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[cairo-rs]
exclude-files = []

[report]
output-dir = "target/tarpaulin"
out = ["Html", "Xml"]

0 comments on commit fd7edb4

Please sign in to comment.