diff options
author | Victor Sergeyev <vsergeyev@mirantis.com> | 2014-11-12 16:06:03 +0200 |
---|---|---|
committer | Victor Sergeyev <vsergeyev@mirantis.com> | 2015-02-12 17:28:54 +0200 |
commit | fa43657e9aa029997d945038a3be5b4f7e7d007f (patch) | |
tree | 69246fac392c1a9eca44759748d83a23b150b537 /tox.ini | |
parent | 2b9d07507695fe04cb5e0ffbda1fa7b9b616aa37 (diff) | |
download | oslo-db-fa43657e9aa029997d945038a3be5b4f7e7d007f.tar.gz |
Use PyMySQL as DB driver in py3 environment
MySQLDb driver works only with python2.x, so we should use an another
connector for work with python3.
Used OS_TEST_DBAPI_ADMIN_CONNECTION env variable to set connection
strings.
Change-Id: I27fbe8f87c713b53a0b1831543a23f7c06fe454b
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -26,10 +26,16 @@ commands = pip install SQLAlchemy>=0.8.0,<0.9.0 python setup.py testr --slowest --testr-args='{posargs}' [testenv:py34] +setenv = + {[testenv]setenv} + OS_TEST_DBAPI_ADMIN_CONNECTION=mysql+pymysql://openstack_citest:openstack_citest@localhost/;postgresql://openstack_citest:openstack_citest@localhost/postgres;sqlite:// deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements-py3.txt [testenv:py33] +setenv = + {[testenv]setenv} + OS_TEST_DBAPI_ADMIN_CONNECTION=mysql+pymysql://openstack_citest:openstack_citest@localhost/;postgresql://openstack_citest:openstack_citest@localhost/postgres;sqlite:// deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements-py3.txt |