diff options
author | Daniele Tricoli <eriol@mornie.org> | 2014-05-28 17:44:10 +0000 |
---|---|---|
committer | Daniele Tricoli <eriol@mornie.org> | 2014-05-28 17:44:10 +0000 |
commit | 27d663a17dfe2fe5e07b9e26a33b6227cae8ae90 (patch) | |
tree | 0cc905606113984827a2d0049cf0356a4dee3a27 | |
parent | bdbf0b134eec09ceb5099207453a85a915e2628f (diff) | |
download | python-urllib3-27d663a17dfe2fe5e07b9e26a33b6227cae8ae90.tar python-urllib3-27d663a17dfe2fe5e07b9e26a33b6227cae8ae90.tar.gz |
Cleaned .coverage file generated by nose using coverage plugin
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/clean | 1 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 7 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index b2878da..99ea330 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ python-urllib3 (1.8.2-1) UNRELEASED; urgency=medium * New upstream release + * debian/clean + - Removed .coverage entry * debian/control - Added python3-coverage, python3-mock, python3-nose to Build-Depends - Bumped python(3)-coverage to (>=3.6) @@ -24,9 +26,10 @@ python-urllib3 (1.8.2-1) UNRELEASED; urgency=medium * debian/rules - Enabled tests at build time also for Python 3 using the custom build plugin of pybuild + - Cleaned .coverage file generated by nose using coverage plugin - No need to remove dummyserver since it is not installed anymore - -- Daniele Tricoli <eriol@mornie.org> Wed, 28 May 2014 17:51:59 +0200 + -- Daniele Tricoli <eriol@mornie.org> Wed, 28 May 2014 19:41:18 +0200 python-urllib3 (1.8-2) unstable; urgency=medium diff --git a/debian/clean b/debian/clean index 5202946..80574db 100644 --- a/debian/clean +++ b/debian/clean @@ -1,2 +1 @@ urllib3.egg-info/* -.coverage diff --git a/debian/rules b/debian/rules index c0abdb2..e66f170 100755 --- a/debian/rules +++ b/debian/rules @@ -18,6 +18,9 @@ override_dh_auto_install: override_dh_auto_test: PYBUILD_SYSTEM=custom \ PYBUILD_TEST_ARGS="cd {build_dir}; {interpreter} -m nose {dir}/test --with-coverage" dh_auto_test + # Clean here .coverage because it is created by nose using the coverage + # plugin + find . -name .coverage -delete override_dh_installchangelogs: dh_installchangelogs CHANGES.rst |