From 9f80691efd0ec84e6e6303b44e06de39e9e9eb85 Mon Sep 17 00:00:00 2001 From: Lucretiel Date: Fri, 6 Mar 2015 01:06:58 -0500 Subject: [PATCH 1/2] Added coverage annotation files Coverage creates annotation files by appending ",cover" (with a comma, not a period) to the filename. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 10d47bd3..54bf4f5f 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -41,6 +41,7 @@ htmlcov/ .cache nosetests.xml coverage.xml +,cover # Translations *.mo From ba6f0a94abe2c802caba33b42da1e6a36e40f526 Mon Sep 17 00:00:00 2001 From: Lucretiel Date: Mon, 16 Mar 2015 10:37:24 -0400 Subject: [PATCH 2/2] Fixed coverage annotation Added missing wildcard to the `*,cover` coverage annotation. --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 54bf4f5f..ba746605 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -41,7 +41,7 @@ htmlcov/ .cache nosetests.xml coverage.xml -,cover +*,cover # Translations *.mo