Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

test_migrations.sh 308B

123456789101112
  1. #!/usr/bin/env bash
  2. #
  3. # Test migrations run correctly
  4. # Fail if any command fails
  5. # http://stackoverflow.com/questions/90418/exit-shell-script-based-on-process-exit-code
  6. set -e
  7. set -o pipefail
  8. # Postgres
  9. echo "Running migrations against Postgres"
  10. ./manage.py migrate --noinput --settings=settings_postgres