Skip to content

Commit

Permalink
Use UTF8 DB when running tests in TravisCI
Browse files Browse the repository at this point in the history
  • Loading branch information
antstorm committed Mar 8, 2016
1 parent e7613c9 commit 3426e53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ services:
- postgresql

before_script:
- mysql -e 'create database ancestry_test;' || true
- psql -c 'create database ancestry_test;' -U postgres || true
- mysql -e 'CREATE DATABASE ancestry_test CHARACTER SET utf8 COLLATE utf8_general_ci;' || true
- psql -c 'CREATE DATABASE ancestry_test;' -U postgres || true

0 comments on commit 3426e53

Please sign in to comment.