view python/run-tests.sh @ 1024:acb4f6f6545d

corrected issues with update to OpenCV 3
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Sun, 10 Jun 2018 23:26:14 -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