From: Markus Lehtonen Date: Mon, 22 Apr 2013 11:11:32 +0000 (+0300) Subject: Disable xcover support for nose X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81ad880de65aab4b1a34aadb4446d0d88f86b05f;p=tools%2Fgit-buildpackage.git Disable xcover support for nose Signed-off-by: Markus Lehtonen --- diff --git a/debian/control b/debian/control index a6b0e5fd..f6cbba0c 100644 --- a/debian/control +++ b/debian/control @@ -14,7 +14,6 @@ Build-Depends: python-epydoc, python-mock, python-nose, - python-nosexcover, python-pkg-resources, python-rpm, python-six, diff --git a/setup.cfg b/setup.cfg index 82471592..1dcb4115 100644 --- 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 diff --git a/setup.py b/setup.py index 9216805a..6003e142 100644 --- 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' ],