From e4956b6e5616ecd0b4e0da12d3484fbb07cbe22d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= <hugo@lysator.liu.se> Date: Tue, 19 Sep 2023 19:36:58 +0200 Subject: [PATCH] Ignore .coverage. .coverage appears to be a file generated when pytest is run with coverage reporting enabled. It's nontheless a binary file, and should be ignored. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8012cbc..be7b68b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .cache .yardoc doc.rendered +.coverage -- GitLab