Parent: [feeb52] (diff)

Child: [b7140a] (diff)

Download this file

run_tests    23 lines (19 with data), 365 Bytes

#!/bin/bash

MODULES="\
    pyforge \
    ForgeDiscussion \
    ForgeGit \
    ForgeHg \
    ForgeMail \
    ForgeSVN \
    ForgeTracker \
    ForgeWiki"

for module in $MODULES; do
    (
        echo "====================="
        echo "Running tests in module $module"
        cd $module
        rm -r .test-data
        nosetests $* || exit
    ) || exit
done