From 6ec10cdce9b27e78ed5dfab7ca318ecd8d4d1f09 Mon Sep 17 00:00:00 2001 From: Krisztian Fekete <1246751+e3krisztian@users.noreply.github.com> Date: Tue, 21 Feb 2023 19:23:52 +0100 Subject: [PATCH] Improve .gitignore - .coverage* During test runs coverage writes lot of temporary files, which show up in interactive git tools, and makes then unresponsive until the test finishes. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 46a68f5be3..e2dd25dcaf 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,4 @@ build/ *.egg-info/ *.so .idea -.coverage +.coverage*