Switch to side-by-side view
--- a +++ b/run_tests @@ -0,0 +1,12 @@ +#!/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. + +for APP in pyforge *Forge* +do + echo Testing $APP + pushd $APP > /dev/null + nosetests $@ + popd > /dev/null +done