X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=tests%2Frun_all.py;h=9503411d70ab58601b89a4d58dcc9afaa517d3e2;hb=ef0d69a5069eef56d4601deb0848059b7271b907;hp=2e217bf31e814c42286fc7a96912fd53e6c3680b;hpb=88eedec9d5e7c7598c01a9316b49f90d7e62eee4;p=sqlconvert.git diff --git a/tests/run_all.py b/tests/run_all.py index 2e217bf..9503411 100755 --- a/tests/run_all.py +++ b/tests/run_all.py @@ -1,4 +1,5 @@ #! /usr/bin/env python +from __future__ import print_function import os @@ -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__':