diff options
Diffstat (limited to 'debian/patches/04_relax_nosetests_options.patch')
-rw-r--r-- | debian/patches/04_relax_nosetests_options.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/patches/04_relax_nosetests_options.patch b/debian/patches/04_relax_nosetests_options.patch new file mode 100644 index 0000000..2f7f8ff --- /dev/null +++ b/debian/patches/04_relax_nosetests_options.patch @@ -0,0 +1,20 @@ +Description: Do not use logging-clear-handlers to see all logging output and + disable cover-min-percentage since it require python-nose (>= 1.3): this way + it will be easier to backport python-urllib3 to Wheezy. +Author: Daniele Tricoli <eriol@mornie.org> +Forwarded: not-needed +Last-Update: 2014-7-7 + +--- a/setup.cfg ++++ b/setup.cfg +@@ -1,8 +1,8 @@ + [nosetests] +-logging-clear-handlers = true ++# logging-clear-handlers = true + with-coverage = true + cover-package = urllib3 +-cover-min-percentage = 100 ++# cover-min-percentage = 100 + cover-erase = true + + [flake8] |