Commit b71bbd9d by fwkz

Test execution helper script.

parent 794372a0
#!/usr/bin/env bash
TEST_PATH="routersploit.test"
if [ -z $1 ] ; then
python -m unittest discover
else
for param in "$@" ; do
PARAMS="$PARAMS $TEST_PATH.$param"
done
python -m unittest $PARAMS
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment