view python/run-tests.sh @ 879:f9ea5083588e

Initial commit of object DB storage update
author pstaub
date Tue, 14 Mar 2017 14:22:14 -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