Commit 823fe7a1 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Convenience script to run all tests.

parent 3c3b4369
#!/bin/bash
PYTHONPATH=..
if [ -n "$1" ]; then
TESTS=$1
else
TESTS="SorterTest TodoBaseTest TodoFileTest TodoTest TodoListTest"
fi
for TEST in $TESTS; do
python -m unittest "$TEST"
done
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