mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-26 06:14:35 +08:00
19 lines
296 B
Bash
Executable file
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
|