weblate/ci/migrate-testing
Michal Čihař 64adb3c702 Rename CI files
Let's make the folder name generic for all CI services.

Signed-off-by: Michal Čihař <michal@cihar.com>
2014-11-12 10:57:32 +01:00

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