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/
# Backup files generated by rustfmt.
**/*.rs.bk
# Code coverage reports
.coverage/
# Code coverage results
coverage/

View File

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