view python/run-tests.sh @ 1027:6129296848d3

Added tag v0.2 for changeset 73b124160911
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 15 Jun 2018 11:18:43 -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