forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
49 lines (46 loc) · 1.4 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tox]
envlist = {py27,py34}-{cdh,hdp}-airflow_backend_{mysql,sqlite,postgres}
skipsdist=True
[global]
wheel_dir = {homedir}/.wheelhouse
find_links =
{homedir}/.wheelhouse
{homedir}/.pip-cache
[testenv]
deps =
wheel
coveralls
basepython =
py27: python2.7
py34: python3.4
setenv =
COVERALLS_REPO_TOKEN=ic8IH7CrUrtweVbmY3VZQ7ncEGe1XJA5E
cdh: HADOOP_DISTRO=cdh
cdh: HADOOP_HOME=/tmp/hadoop-cdh
cdh: KRB5_CONFIG=/tmp/minikdc/work
cdh: HADOOP_OPTS=-D/tmp/minikdc/work/krb5.conf
hdp: HADOOP_DISTRO=hdp
hdp: HADOOP_HOME=/tmp/hadoop-hdp
hdp: KRB5_CONFIG=/tmp/minikdc/work
hdp: HADOOP_OPTS=-D/tmp/minikdc/work/krb5.conf
airflow_backend_mysql: BACKEND_SQL_ALCHEMY_CONN=mysql://root@localhost/airflow
airflow_backend_sqlite: BACKEND_SQL_ALCHEMY_CONN=sqlite:///{homedir}/airflow/airflow.db
airflow_backend_postgres: BACKEND_SQL_ALCHEMY_CONN=postgresql+psycopg2://postgres@localhost/airflow
passenv =
HOME
JAVA_HOME
TRAVIS
TRAVIS_BRANCH
TRAVIS_BUILD_DIR
TRAVIS_JOB_ID
USER
TRAVIS_CACHE
commands =
pip wheel -w {homedir}/.wheelhouse -f {homedir}/.wheelhouse -r requirements.txt
pip install --find-links={homedir}/.wheelhouse --no-index -rrequirements.txt
# {toxinidir}/scripts/ci/setup_kdc.sh
{toxinidir}/scripts/ci/setup_env.sh
{toxinidir}/scripts/ci/ldap.sh
{toxinidir}/scripts/ci/load_fixtures.sh
{toxinidir}/scripts/ci/run_tests.sh []
coveralls