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>
Tue, 3 Mar 2015 08:07:47 +0000 (10:07 +0200)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
debian/control
setup.cfg
setup.py

index a6b0e5fd454ed8bdc97415816a25e004c320da77..f6cbba0c257114505d67a76d742d6a7be3f38b11 100644 (file)
@@ -14,7 +14,6 @@ Build-Depends:
  python-epydoc,
  python-mock,
  python-nose,
- python-nosexcover,
  python-pkg-resources,
  python-rpm,
  python-six,
index 8247159240ab0e8ca65a9194af0e3e7aed2f684a..1dcb4115b8b3d3f92b1519b94aa77e3d74404fa3 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 9216805aa721b7804f88ef8661428f1bb7df4b3b..6003e142bcc7217393680ac1247e84ca2112d8bb 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -65,7 +65,7 @@ setup(name = "gbp",
       packages = find_packages(exclude=['tests', 'tests.*']),
       data_files = [("/etc/git-buildpackage/", ["gbp.conf"]),],
       requires = ["six"],
-      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' ],