Files
superset2/tox.ini
Dennis O'Brien ca66ba4893 Fix initialization of Database sqlalchemy_uri and password (#1137)
* move initialization of Database sqlalchemy_uri and password from DatabaseView.pre_add to utils.get_or_create_main_db.
Unit tests for mysql and postgres include username and password in the SQLALCHEMY_DATABASE_URI.

* modified test_testconn to work with sqlalchemy uri with a username and password.
2016-09-19 15:14:00 -07:00

74 lines
1.7 KiB
INI

[tox]
envlist =
py27-mysql
py27-sqlite
py27-postgres
py34-mysql
py35-mysql
skipsdist=True
[global]
wheel_dir = {homedir}/.wheelhouse
find_links =
{homedir}/.wheelhouse
{homedir}/.pip-cache
[testenv]
deps =
wheel
coveralls
passenv =
HOME
TRAVIS
TRAVIS_BRANCH
TRAVIS_BUILD_DIR
TRAVIS_JOB_ID
USER
TRAVIS_CACHE
TRAVIS_PULL_REQUEST
PATH
commands =
python --version
pip wheel -w {homedir}/.wheelhouse -f {homedir}/.wheelhouse .
pip install --find-links={homedir}/.wheelhouse --no-index .
pip install -r dev-reqs.txt
{toxinidir}/run_tests.sh
[testenv:py27-mysql]
basepython = python2.7
setenv =
CARAVEL__SQLALCHEMY_DATABASE_URI = mysql://mysqluser:mysqluserpassword@localhost/caravel
[testenv:py34-mysql]
basepython = python3.4
setenv =
CARAVEL__SQLALCHEMY_DATABASE_URI = mysql://mysqluser:mysqluserpassword@localhost/caravel
[testenv:py35-mysql]
basepython = python3.5
setenv =
CARAVEL__SQLALCHEMY_DATABASE_URI = mysql://mysqluser:mysqluserpassword@localhost/caravel
[testenv:py27-sqlite]
basepython = python2.7
setenv =
CARAVEL__SQLALCHEMY_DATABASE_URI = sqlite:////tmp/caravel.db
[testenv:py34-sqlite]
basepython = python3.4
setenv =
CARAVEL__SQLALCHEMY_DATABASE_URI = sqlite:////tmp/caravel.db
[testenv:py27-postgres]
basepython = python2.7
setenv =
CARAVEL__SQLALCHEMY_DATABASE_URI = postgresql+psycopg2://postgresuser:pguserpassword@localhost/caravel
[testenv:py34-postgres]
basepython = python3.4
setenv =
CARAVEL__SQLALCHEMY_DATABASE_URI = postgresql+psycopg2://postgresuser:pguserpassword@localhost/caravel
[testenv:javascript]
commands = {toxinidir}/caravel/assets/js_build.sh