view python/run-tests.sh @ 800:2cade72d75ad dev

modified so there is no tracking outside of the mask (does not continue if features can still be matched) as requested
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 31 May 2016 17:06:41 -0400
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