12 lines
181 B
Plaintext
12 lines
181 B
Plaintext
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
echo "Running tests..."
|
||
|
|
||
|
if [ "$1" = "coverage" ]; then
|
||
|
coverage run -m unittest discover tests
|
||
|
else
|
||
|
python3 -m unittest discover tests
|
||
|
fi
|
||
|
|
||
|
script/lint
|