view python/run-tests.sh @ 1001:cc7c6b821ae6

added methods for setting instants
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 30 May 2018 14:44:08 -0400
parents 933670761a57
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