Parent: [6b564a] (diff)

Child: [d6c01a] (diff)

Download this file

run_tests    16 lines (12 with data), 412 Bytes

#!/usr/bin/env bash

# Executes nosetest for each forge application in sequence.
# Additional parameters passed to this script (such as --failed) will be passed to nosetest.

# Remove existing .test-data directories; start each test run with clean data
find . -name '.test-data' -type d | xargs rm -r

for APP in pyforge *Forge*
do
	echo Testing $APP
	pushd $APP > /dev/null
	nosetests $@
	popd > /dev/null
done