From de84f59f0c07c529908fba174590590d3e2ba279 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Tue, 15 Sep 2020 18:16:19 -0400 Subject: [PATCH] Ignore emacs lisp files Tahoe-LAFS project has a file named `/misc/coding_tools/coverage.el`, which is often uploaded to codecov along with the regular coverage report. I'm not sure it is doing any harm, but can't be doing anything useful either! It would be nice if codecov could ignore `.el` files. --- codecov/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/codecov/__init__.py b/codecov/__init__.py index fd6ac89b..370c03ff 100644 --- a/codecov/__init__.py +++ b/codecov/__init__.py @@ -88,6 +88,7 @@ def sanitize_arg(replacement, arg): r"(/\.coverage.*)|" r"(\.coveragerc)|" r"(\.egg)|" + r"(\.el)|" r"(\.gif)|" r"(\.ini)|" r"(\.less)|"