core/script/test

12 lines
181 B
Plaintext
Raw Normal View History

cd "$(dirname "$0")/.."
echo "Running tests..."
2015-01-17 22:32:33 +00:00
if [ "$1" = "coverage" ]; then
coverage run -m unittest discover tests
else
python3 -m unittest discover tests
fi
script/lint