weblate/ci/run-test
Michal Čihař 0127ca6a3d Do not run tests verbosely on Travis
It produces too long logs to be shown in the UI.

Signed-off-by: Michal Čihař <michal@cihar.com>
2018-04-06 11:51:53 +02:00

16 lines
234 B
Bash
Executable file
Vendored

#!/bin/sh
# Testsuite executor
. ci/lib
run_coverage ./manage.py migrate --noinput --traceback
check
run_coverage ./manage.py collectstatic --noinput
check
run_coverage ./manage.py check
check
run_coverage ./manage.py test
check