diff --git a/.travis.yml b/.travis.yml index f4afa27d..3adb688f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,9 @@ sudo: false rvm: - 2.4 +before_install: + - mysql -e 'CREATE DATABASE IF NOT EXISTS test CHARACTER SET utf8mb4;' + install: script: diff --git a/test/ci/postgres.yml b/test/ci/postgres.yml index eb809d88..0269c6e1 100644 --- a/test/ci/postgres.yml +++ b/test/ci/postgres.yml @@ -1,5 +1,5 @@ test: - adapter: postgres + adapter: postgresql database: test encoding: utf8 \ No newline at end of file diff --git a/test/ci/sqlite.yml b/test/ci/sqlite.yml index 137e1433..7a9349f7 100644 --- a/test/ci/sqlite.yml +++ b/test/ci/sqlite.yml @@ -1,5 +1,5 @@ test: adapter: sqlite3 - database: ":memory:" + database: test timeout: 500 \ No newline at end of file