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/pygtk/files/pygtk-2.24.0-test-fail.patch

10 lines
248 B

--- tests/runtests.py
+++ tests/runtests.py
@@ -41,4 +41,5 @@
suite.addTest(loader.loadTestsFromName(name))
testRunner = unittest.TextTestRunner()
-testRunner.run(suite)
+result = testRunner.run(suite)
+sys.exit(not result.wasSuccessful())