]> jfr.im git - z_archive/twitter.git/commitdiff
Removing runner.py ... all you need is python-nose to run them.
authorHatem Nassrat <redacted>
Sun, 24 Mar 2013 20:08:15 +0000 (20:08 +0000)
committerHatem Nassrat <redacted>
Sun, 24 Mar 2013 20:08:15 +0000 (20:08 +0000)
tests/runner.py [deleted file]

diff --git a/tests/runner.py b/tests/runner.py
deleted file mode 100644 (file)
index 60a1f1a..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-import sys
-import test_sanity
-import test_util
-
-test_libs = [test_sanity, test_util]
-
-def main():
-    for l in test_libs:
-        for t in dir(l):
-            if t.startswith('test'):
-                sys.stdout.write('%s ... ' %t)
-                sys.stdout.flush()
-                try:
-                    getattr(l,t)()
-                except Exception, e:
-                    import traceback
-                    traceback.print_exc()
-                else:
-                    sys.stdout.write('OK\n')
-
-if __name__ == '__main__':
-    main()