mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-04 21:38:58 +08:00
16 lines
239 B
Bash
Executable file
16 lines
239 B
Bash
Executable file
#!/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 -v 2
|
|
check
|