1
0
Fork 0
mirror of https://github.com/activerecord-hackery/ransack.git synced 2022-11-09 13:47:45 -05:00

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

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