diff options
author | Nathan Fritz <fritzy@netflint.net> | 2010-01-27 15:09:45 -0800 |
---|---|---|
committer | Nathan Fritz <fritzy@netflint.net> | 2010-01-27 15:09:45 -0800 |
commit | f159328dc436632450e09ed4a2992e7e7f9afde4 (patch) | |
tree | 59f26e2cc6c87762cedf40e41c318f79fce408b4 /testall.py | |
parent | a4ec7413e4dc9246f4612b73fca9b9d842287e44 (diff) | |
parent | 3dbd496de8b6d358b657eada91acc6b71455ffbf (diff) | |
download | slixmpp-f159328dc436632450e09ed4a2992e7e7f9afde4.tar.gz slixmpp-f159328dc436632450e09ed4a2992e7e7f9afde4.tar.bz2 slixmpp-f159328dc436632450e09ed4a2992e7e7f9afde4.tar.xz slixmpp-f159328dc436632450e09ed4a2992e7e7f9afde4.zip |
Merge branch 'master' of github.com:fritzy/SleekXMPP
Diffstat (limited to 'testall.py')
-rw-r--r-- | testall.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -16,6 +16,7 @@ class testoverall(unittest.TestCase): """Invoking the tabnanny""" import tabnanny self.failIf(tabnanny.check("." + os.sep + 'sleekxmpp')) + #raise "Help!" def testMethodLength(self): """Testing for excessive method lengths""" @@ -62,4 +63,5 @@ if __name__ == '__main__': #sys.modules[modname].config = moduleconfig alltests.append(sys.modules[modname].suite) alltests_suite = unittest.TestSuite(alltests) - unittest.TextTestRunner(verbosity=2).run(alltests_suite) + result = unittest.TextTestRunner(verbosity=2).run(alltests_suite) + print("""<tests xmlns='http://andyet.net/protocol/tests' ran='%s' errors='%s' fails='%s' success='%s' />""" % (result.testsRun, len(result.errors), len(result.failures), result.wasSuccessful())) |