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