weblate/ci/run-test
Michal Čihař 6f1dc61e4a CI: Add missing compilemessages step to tests
Signed-off-by: Michal Čihař <michal@cihar.com>
2019-08-09 22:00:55 +02:00

19 lines
296 B
Bash
Executable file

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