view 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 source

#!/bin/sh
# for file in tests/*... basename
for f in ./*.py
do
    python3 $f
done
for f in ./tests/*.py
do
    python3 $f
done