Test postgres before mysql variations in migration

This commit is contained in:
Jake Moshenko 2015-10-23 16:24:40 -04:00
parent b920bf6436
commit 3186311669

View file

@ -108,6 +108,16 @@ test_migrate $MYSQL_CONFIG_OVERRIDE
set -e set -e
down_mysql down_mysql
# Test via Postgres.
echo '> Starting Postgres'
up_postgres
echo '> Testing Migration (postgres)'
set +e
test_migrate $PGSQL_CONFIG_OVERRIDE
set -e
down_postgres
# Test via MariaDB. # Test via MariaDB.
echo '> Starting MariaDB' echo '> Starting MariaDB'
up_mariadb up_mariadb
@ -127,13 +137,3 @@ set +e
test_migrate $PERCONA_CONFIG_OVERRIDE test_migrate $PERCONA_CONFIG_OVERRIDE
set -e set -e
down_percona down_percona
# Test via Postgres.
echo '> Starting Postgres'
up_postgres
echo '> Testing Migration (postgres)'
set +e
test_migrate $PGSQL_CONFIG_OVERRIDE
set -e
down_postgres