aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Tricoli <eriol@mornie.org>2014-09-23 02:19:20 +0000
committerDaniele Tricoli <eriol@mornie.org>2014-09-23 02:19:20 +0000
commit18e2a6b94d3e012f5126950c7ad9012ef0f41f40 (patch)
treeacb4f75f1b48c49ff17f0da99aa85713a4f2ecea
parentbbb1c4ec884f343ef5957b877f21dfc11da7e155 (diff)
downloadpython-urllib3-18e2a6b94d3e012f5126950c7ad9012ef0f41f40.tar
python-urllib3-18e2a6b94d3e012f5126950c7ad9012ef0f41f40.tar.gz
Exclude dummyserver tests since they are also failing upstream
-rw-r--r--debian/changelog4
-rwxr-xr-xdebian/rules3
2 files changed, 5 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index b39ccb3..4dab8ab 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,8 +7,10 @@ python-urllib3 (1.9.1-1) UNRELEASED; urgency=medium
- Refresh.
* debian/patches/06_add-test-init-py.patch
- Remove since fixed upstream.
+ * debian/rules
+ - Exclude with_dummyserver tests since they are also failing upstream.
- -- Daniele Tricoli <eriol@mornie.org> Tue, 23 Sep 2014 02:36:33 +0200
+ -- Daniele Tricoli <eriol@mornie.org> Tue, 23 Sep 2014 04:15:49 +0200
python-urllib3 (1.9-1) unstable; urgency=medium
diff --git a/debian/rules b/debian/rules
index e66f170..e94c934 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,8 +16,9 @@ override_dh_auto_install:
-d $(CURDIR)/debian/tmp/usr/share/python-wheels
override_dh_auto_test:
+ # Exclude dummyserver tests since they are also failing upstream.
PYBUILD_SYSTEM=custom \
- PYBUILD_TEST_ARGS="cd {build_dir}; {interpreter} -m nose {dir}/test --with-coverage" dh_auto_test
+ PYBUILD_TEST_ARGS="cd {build_dir}; {interpreter} -m nose {dir}/test --with-coverage -e with_dummyserver" dh_auto_test
# Clean here .coverage because it is created by nose using the coverage
# plugin
find . -name .coverage -delete