diff options
Diffstat (limited to 'debian/patches/04_relax_nosetests_options.patch')
-rw-r--r-- | debian/patches/04_relax_nosetests_options.patch | 30 |
1 files changed, 30 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..bec12aa --- /dev/null +++ b/debian/patches/04_relax_nosetests_options.patch @@ -0,0 +1,30 @@ +From 966d73488bc803f437395d8337bd322a0016084f Mon Sep 17 00:00:00 2001 +From: Daniele Tricoli <eriol@mornie.org> +Date: Thu, 8 Oct 2015 13:19:50 -0700 +Subject: 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. +Forwarded: not-needed +Last-Update: 2014-7-7 + +Patch-Name: 04_relax_nosetests_options.patch +--- + setup.cfg | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/setup.cfg b/setup.cfg +index 6a64ffa..25a6815 100644 +--- 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] |