Update gitignore and move coverage directory.

This commit is contained in:
Bauke 2022-09-30 23:36:21 +02:00
parent dda3e2debc
commit b32e45d058
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 5 additions and 7 deletions

10
.gitignore vendored
View File

@ -1,8 +1,6 @@
# Compiled files and executables. # Generated by Cargo
debug/
target/ target/
# Backup files generated by rustfmt. # Code coverage results
**/*.rs.bk coverage/
# Code coverage reports
.coverage/

View File

@ -36,7 +36,7 @@ args = [
"tarpaulin", "tarpaulin",
"--exclude-files=target/*", "--exclude-files=target/*",
"--out=html", "--out=html",
"--output-dir=.coverage", "--output-dir=coverage",
"--skip-clean", "--skip-clean",
"--target-dir=target/tarpaulin", "--target-dir=target/tarpaulin",
"--workspace" "--workspace"