Revision 6304c816c9c5bd1bd60bedae42aa70b98bfeb1cf authored by John Chilton on 15 January 2015, 21:01:33 UTC, committed by John Chilton on 15 January 2015, 21:01:33 UTC
1 parent 136239b
Raw File
run_tool_shed_functional_tests.sh
#!/bin/sh

# A good place to look for nose info: http://somethingaboutorange.com/mrl/projects/nose/
#rm -f ./test/tool_shed/run_functional_tests.log 

if [ ! $1 ]; then
    python ./test/tool_shed/functional_tests.py -v --with-nosehtml --html-report-file ./test/tool_shed/run_functional_tests.html ./test/tool_shed/functional
elif [ $1 = 'help' ]; then
    echo "'run_tool_shed_functional_tests.sh'                for running all the test scripts in the ./test/tool_shed/functional directory"
    echo "'run_tool_shed_functional_tests.sh testscriptname' for running one test script named testscriptname in the .test/tool_shed/functional directory"
else
    python ./test/tool_shed/functional_tests.py -v --with-nosehtml --html-report-file ./test/tool_shed/run_functional_tests.html $1
fi

echo "'sh run_tool_shed_functional_tests.sh help' for help"
back to top