From: Ezio Melotti Date: Sat, 25 Jun 2011 09:36:38 +0000 (+0300) Subject: #12341: add coverage files/dirs to .hgignore. Patch by Sandro Tosi. X-Git-Tag: v3.2.1rc2~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f00bfa201989d6e3f70c1186c27a46152f631b6e;p=thirdparty%2FPython%2Fcpython.git #12341: add coverage files/dirs to .hgignore. Patch by Sandro Tosi. --- diff --git a/.bzrignore b/.bzrignore index 376f00f590c5..e893a7dfcfc0 100644 --- a/.bzrignore +++ b/.bzrignore @@ -37,3 +37,6 @@ Lib/test/data/* Lib/lib2to3/Grammar*.pickle Lib/lib2to3/PatternGrammar*.pickle __pycache__ +.coverage +coverage/* +htmlcov/* diff --git a/.gitignore b/.gitignore index ad3d0e790b9a..63f4314e054e 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,6 @@ pyconfig.h python python-gdb.py tags +.coverage +coverage/ +htmlcov/ diff --git a/.hgignore b/.hgignore index e5e149fba5cc..7136ed1a4b70 100644 --- a/.hgignore +++ b/.hgignore @@ -65,3 +65,6 @@ PCbuild/*.bsc PCbuild/Win32-temp-* __pycache__ Modules/_testembed +.coverage +coverage/ +htmlcov/