X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=tests%2Frun_all.py;h=c04d9ed372f2baa2a6b4ba2dc4b8ef0b58da7936;hb=061a45aba1f91ec167eb9ac283a4c0a0afb52798;hp=2e217bf31e814c42286fc7a96912fd53e6c3680b;hpb=f29edf3e09805c843b4e8b54ba0fbfdfaafd55d7;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__':