]> git.phdru.name Git - sqlconvert.git/blobdiff - tests/run_all.py
Use print function for Python 3 compatibility
[sqlconvert.git] / tests / run_all.py
index 2e217bf31e814c42286fc7a96912fd53e6c3680b..9503411d70ab58601b89a4d58dcc9afaa517d3e2 100755 (executable)
@@ -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__':