From bf1d83e68e818e6bc79dca63c1d46ef799073d53 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Wed, 28 Oct 2020 12:56:35 -0700 Subject: [PATCH] Add coverlet output to gitignore (#448) Makes sure we exclude the generated `coverage.json` files from git. We don't want these to get accidentally committed if someone is running coverage on their own machine. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 075f4b5c..848028de 100644 --- a/.gitignore +++ b/.gitignore @@ -84,3 +84,6 @@ bld/ # VS Code .vscode/ + +# coverlet code coverage results +coverage.json \ No newline at end of file