Disable xcover support for nose
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Mon, 22 Apr 2013 11:11:32 +0000 (14:11 +0300)
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Thu, 5 Jun 2014 11:20:06 +0000 (14:20 +0300)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
debian/control
setup.cfg
setup.py

index 2e71b79..3b3cca0 100644 (file)
@@ -13,7 +13,6 @@ Build-Depends:
  python (>> 2.6.6-3~),
  python-epydoc,
  python-nose,
- python-nosexcover,
  python-pkg-resources,
  python-setuptools,
  sgml2x,
index 8247159..1dcb411 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
 [nosetests]
 with-doctest=1
-with-xcoverage=1
+#with-xcoverage=1
 with-xunit=1
 cover-package=gbp
 cover-erase=1
index 4579d02..9506a5d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -62,7 +62,7 @@ setup(name = "gbp",
                   'bin/git-import-orig-rpm'],
       packages = find_packages(exclude=['tests', 'tests.*']),
       data_files = [("/etc/git-buildpackage/", ["gbp.conf"]),],
-      setup_requires=['nose>=0.11.1', 'coverage>=2.85', 'nosexcover>=1.0.7'] if \
+      setup_requires=['nose>=0.11.1', 'coverage>=2.85'] if \
                         os.getenv('WITHOUT_NOSETESTS') is None else [],
       entry_points = {
           'console_scripts': [ 'gbp = gbp.scripts.supercommand:supercommand' ],