From dd8fe1a4b69ec71feb28553e74f93abe152703a8 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Tue, 15 Sep 2020 18:54:18 -0400 Subject: [PATCH] Ignore emacs lisp files (#297) 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)|"