X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=tests%2Frun_all.py;h=c04d9ed372f2baa2a6b4ba2dc4b8ef0b58da7936;hb=e2359612ebbe764cbbc01d1d20bc3a854b7524df;hp=2e217bf31e814c42286fc7a96912fd53e6c3680b;hpb=4c253d9b2f16b24d7c8847286cf1a64ed1f4d726;p=m_librarian.git diff --git a/tests/run_all.py b/tests/run_all.py index 2e217bf..c04d9ed 100755 --- a/tests/run_all.py +++ b/tests/run_all.py @@ -1,6 +1,7 @@ #! /usr/bin/env python +from __future__ import print_function import os import sys import subprocess @@ -31,7 +32,7 @@ def main(): os.environ["PYTHONPATH"] = os.curdir for test in sorted(tests): - print test + print(test) subprocess.call((sys.executable, '-m', test)) if __name__ == '__main__':