mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-26 21:23:54 +08:00
Let's make the folder name generic for all CI services. Signed-off-by: Michal Čihař <michal@cihar.com>
10 lines
257 B
Bash
Executable file
Vendored
10 lines
257 B
Bash
Executable file
Vendored
#!/bin/sh
|
|
# Migration ordering testing
|
|
set -e
|
|
set -x
|
|
|
|
for app in trans lang accounts ; do
|
|
rm -f weblate.db
|
|
./manage.py syncdb --noinput --settings weblate.settings_test
|
|
./manage.py migrate --settings weblate.settings_test --traceback $app
|
|
done
|