Parent: [a68a69] (diff)

Child: [e031dc] (diff)

Download this file

run_tests    25 lines (21 with data), 384 Bytes

#!/bin/bash

if [ "$TEST_MODULES"  == "" ]; then
    TEST_MODULES="\
    Allura \
    ForgeDiscussion \
    ForgeGit \
    ForgeHg \
    ForgeMail \
    ForgeSVN \
    ForgeTracker \
    ForgeWiki \
    ForgeDownloads \
    ."
fi

for module in $TEST_MODULES; do
    (
        echo "Running tests in module $module"
        cd $module
        nosetests $* || exit
    ) || exit
done