From b32e45d05825ca2073eabd0efd4c2470c796fb55 Mon Sep 17 00:00:00 2001 From: Bauke Date: Fri, 30 Sep 2022 23:36:21 +0200 Subject: [PATCH] Update gitignore and move coverage directory. --- .gitignore | 10 ++++------ Makefile.toml | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index cbf3dd5..fbbabcf 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ diff --git a/Makefile.toml b/Makefile.toml index 2eff471..abf5d82 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -36,7 +36,7 @@ args = [ "tarpaulin", "--exclude-files=target/*", "--out=html", - "--output-dir=.coverage", + "--output-dir=coverage", "--skip-clean", "--target-dir=target/tarpaulin", "--workspace"