view python/run-tests.sh @ 650:d74e8c175d6b

minor cleaning
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 16 Apr 2015 16:13:05 +0200
parents da665302c88d
children 933670761a57
line wrap: on
line source

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