Add a verbose flag to mysql import to see where it is failing

This commit is contained in:
Timothy Warren 2014-10-27 16:41:32 -04:00
parent 511c41adbd
commit 9afa89cee8
1 changed files with 1 additions and 2 deletions

View File

@ -3,11 +3,10 @@ language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_script:
- psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
- psql -c 'create database test;' -U postgres
- mysql -e 'create database IF NOT EXISTS test;'
- mysql -uroot test < ./tests/sql/mysql.sql
- mysql -v -uroot test < ./tests/sql/mysql.sql
- psql test postgres -f ./tests/sql/pgsql.sql