mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-26 06:14:35 +08:00
24 lines
398 B
Bash
Executable file
24 lines
398 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Testsuite executor
|
|
|
|
. ci/lib.sh
|
|
|
|
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
|