mirror of
https://github.com/WeblateOrg/weblate.git
synced 2026-08-01 13:20:10 +08:00
16 lines
239 B
Bash
Executable file
Vendored
16 lines
239 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 -v 2
|
|
check
|