view python/run-tests.sh @ 1016:9b53be469a36

getting ready for pull request
author Wendlasida
date Mon, 04 Jun 2018 15:51:03 -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