Parent: [d6c01a] (diff)

Child: [461e73] (diff)

Download this file

run_tests    25 lines (20 with data), 426 Bytes

#!/bin/bash

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

MODULES="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