From de4f1b34d23ad1bc0e6c1c4a7e6a6ce41ed2b950 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 4 Jan 2013 20:21:26 +0100 Subject: [PATCH] Revert "supybot-test: Return the appropriate exit code." This reverts commit f7f53fc9f673ae712f57e7602525a0e49d7954b4. --- scripts/supybot-test | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/supybot-test b/scripts/supybot-test index d0f0f260a..b5338a93e 100644 --- a/scripts/supybot-test +++ b/scripts/supybot-test @@ -31,7 +31,6 @@ ### import os -import sys import time import shutil started = time.time() @@ -201,11 +200,9 @@ if __name__ == '__main__': shutil.rmtree(conf.supybot.directories.log()) shutil.rmtree(conf.supybot.directories.conf()) shutil.rmtree(conf.supybot.directories.data()) - result = runner.run(suite) + runner.run(suite) if hasattr(unittest, 'asserts'): print 'Total asserts: %s' % unittest.asserts - sys.exit(int(result.wasSuccessful())) - # vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: