forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
34 lines (32 loc) · 901 Bytes
/
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
[tox]
envlist = {py27,py34}-{cdh,hdp}
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 =
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
passenv = USER JAVA_HOME HOME TRAVIS_BUILD_DIR
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/run_tests.sh []
coveralls