1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Disable tests which don't work in debian
Author: Ondřej Nový <onovy@debian.org>
Forwarded: not-needed
Last-Update: 2017-08-08
--- a/pbr/tests/test_wsgi.py
+++ b/pbr/tests/test_wsgi.py
@@ -62,6 +62,7 @@
wsgi script using simple server.
"""
+ self.skipTest('Not working on Debian')
if os.name == 'nt':
self.skipTest('Windows support is passthrough')
@@ -154,6 +155,7 @@
self.assertIn(else_block, script_txt)
def test_with_argument(self):
+ self.skipTest('Not working on Debian')
if os.name == 'nt':
self.skipTest('Windows support is passthrough')
|