diff python/run-tests.sh @ 998:933670761a57

updated code to python 3 (tests pass and scripts run, but non-executed parts of code are probably still not correct)
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Sun, 27 May 2018 23:22:48 -0400
parents da665302c88d
children
line wrap: on
line diff
--- a/python/run-tests.sh	Fri May 25 18:15:18 2018 -0400
+++ b/python/run-tests.sh	Sun May 27 23:22:48 2018 -0400
@@ -2,9 +2,9 @@
 # for file in tests/*... basename
 for f in ./*.py
 do
-    python $f
+    python3 $f
 done
 for f in ./tests/*.py
 do
-    python $f
+    python3 $f
 done