X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=tests%2Frun_all.py;h=2e217bf31e814c42286fc7a96912fd53e6c3680b;hb=44a3a24316c5dd653aa6d61af06a77a2aba0b974;hp=51d3d6ad75c09cf004143d2d008184515ae51651;hpb=73bc43ecf69a473464909ef1b4d2236c60fcb1bb;p=m_librarian.git diff --git a/tests/run_all.py b/tests/run_all.py index 51d3d6a..2e217bf 100755 --- a/tests/run_all.py +++ b/tests/run_all.py @@ -31,14 +31,8 @@ def main(): os.environ["PYTHONPATH"] = os.curdir for test in sorted(tests): - sys.stdout.write("Test: %s... " % test) - sys.stdout.flush() - rc = subprocess.call((sys.executable, '-m', test)) - if rc: - sys.stdout.write("ERROR\n") - else: - sys.stdout.write("Ok\n") - sys.stdout.flush() + print test + subprocess.call((sys.executable, '-m', test)) if __name__ == '__main__': main()