summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-03-26 19:05:03 +0100
committerGuido Günther <agx@sigxcpu.org>2015-03-27 12:10:55 +0100
commit74008c7b859a36f65e7dcaf99275025c9de74e84 (patch)
treea99c52a1b647db3e173f7da9a1cbbc5db753945e
parent6968a5c8e8a30b5fd3b9746924ce87334dfc8d78 (diff)
Turn off coverage output by default
It's much simpler to spot the cause of test failures this way.
-rwxr-xr-xdebian/rules2
-rw-r--r--setup.cfg1
2 files changed, 1 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules
index a80bd52..405bb88 100755
--- a/debian/rules
+++ b/debian/rules
@@ -24,7 +24,7 @@ ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
export GIT_COMMITTER_NAME=$$GIT_AUTHOR_NAME; \
export GIT_COMMITTER_EMAIL=$$GIT_AUTHOR_EMAIL; \
PYTHONPATH=. \
- python setup.py nosetests
+ python setup.py nosetests --with-xcoverage
PYTHONPATH=. pychecker $(PYCHECKER_ARGS) -q \
gbp gbp.scripts gbp.git gbp.deb
diff --git a/setup.cfg b/setup.cfg
index 8247159..b3408ed 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,5 @@
[nosetests]
with-doctest=1
-with-xcoverage=1
with-xunit=1
cover-package=gbp
cover-erase=1