You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/dbusmock/files/0.16.7-disable-pyflakes-tes...

21 lines
676 B

https://github.com/martinpitt/python-dbusmock/issues/28
--- a/tests/test_code.orig
+++ b/tests/test_code.py
@@ -17,6 +17,7 @@
class StaticCodeTests(unittest.TestCase):
+ """
@unittest.skipIf(subprocess.call(['which', 'pyflakes'],
stdout=subprocess.PIPE) != 0,
'pyflakes not installed')
@@ -25,6 +26,7 @@
universal_newlines=True)
(out, err) = pyflakes.communicate()
self.assertEqual(pyflakes.returncode, 0, out)
+ """
@unittest.skipIf(subprocess.call(['which', 'pep8'],
stdout=subprocess.PIPE) != 0,