update the dependence

This commit is contained in:
astaxie 2016-01-08 16:01:07 +08:00
parent 302b1ef7df
commit d2de71d8ab
1 changed files with 3 additions and 3 deletions

View File

@ -13,6 +13,6 @@ env:
- ORM_DRIVER=mysql
- ORM_DRIVER=postgres
before_script:
- sh -c "if [ '$DB' = 'postgres' ]; then export ORM_SOURCE='user=postgres dbname=orm_test sslmode=disable'; psql -c 'create database orm_test;' -U postgres; fi"
- sh -c "if [ '$DB' = 'mysql' ]; then export ORM_SOURCE='root:@/orm_test?charset=utf8'; mysql -u root -e 'create database orm_test;'; fi"
- sh -c "if [ '$DB' = 'sqlite' ]; then export ORM_SOURCE=$TRAVIS_BUILD_DIR/orm_test.db; touch $TRAVIS_BUILD_DIR/orm_test.db; fi"
- sh -c "if [ '$ORM_DRIVER' = 'postgres' ]; then export ORM_SOURCE='user=postgres dbname=orm_test sslmode=disable'; psql -c 'create database orm_test;' -U postgres; fi"
- sh -c "if [ '$ORM_DRIVER' = 'mysql' ]; then export ORM_SOURCE='root:@/orm_test?charset=utf8'; mysql -u root -e 'create database orm_test;'; fi"
- sh -c "if [ '$ORM_DRIVER' = 'sqlite' ]; then export ORM_SOURCE=$TRAVIS_BUILD_DIR/orm_test.db; touch $TRAVIS_BUILD_DIR/orm_test.db; fi"