From a46a4e2f6d6a9154bf36fb89ab6bf48a2bc92b43 Mon Sep 17 00:00:00 2001 From: Anthony Dmitriyev Date: Sat, 5 Dec 2015 20:36:33 +0000 Subject: [PATCH] Use UTF8 DB when running tests in TravisCI --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7aa076f9..ef593c92 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,5 +37,5 @@ addons: - sqlite3 before_script: - - mysql -e 'create database ancestry_test;' - - psql -c 'create database ancestry_test;' -U postgres + - mysql -e 'CREATE DATABASE ancestry_test CHARACTER SET utf8 COLLATE utf8_general_ci;' + - psql -c 'CREATE DATABASE ancestry_test;' -U postgres