From ed2feaf84b470fda29670ffaededb36089e473eb Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Tue, 20 Sep 2016 17:30:57 -0700 Subject: [PATCH] fix build with utf-8 connection string option to mysql (#1159) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index db70fa930d9af..e8c14444da0b6 100644 --- a/tox.ini +++ b/tox.ini @@ -40,7 +40,7 @@ commands = {toxinidir}/caravel/assets/js_build.sh [testenv:py27-mysql] basepython = python2.7 setenv = - CARAVEL__SQLALCHEMY_DATABASE_URI = mysql://mysqluser:mysqluserpassword@localhost/caravel + CARAVEL__SQLALCHEMY_DATABASE_URI = mysql://mysqluser:mysqluserpassword@localhost/caravel?charset=utf8 [testenv:py34-mysql] basepython = python3.4