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 Jul 10, 2018
1 parent 4e2416a commit e84a651
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 @@ -36,5 +36,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 e84a651

Please sign in to comment.