It helps to create the databases before running the tests on travis

This commit is contained in:
Ryan Bigg 2013-11-06 17:48:23 +11:00
parent b2149a1e13
commit 8f5ab85af2
1 changed files with 4 additions and 0 deletions

View File

@ -12,3 +12,7 @@ env:
- RAILS=3-0-stable DB=sqlite
- RAILS=3-0-stable DB=mysql
- RAILS=3-0-stable DB=postgres
before_script:
- mysql -e 'create database ransack;'
- psql -c 'create database ransack;' -U postgres