forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
87 lines (75 loc) · 2.32 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
[tox]
envlist = flake8,{py27,py35}-backend_{mysql,sqlite,postgres}
skipsdist=True
[global]
wheel_dir = {homedir}/.wheelhouse
find_links =
{homedir}/.wheelhouse
{homedir}/.pip-cache
[flake8]
max-line-length = 90
ignore = E731
[testenv]
deps =
wheel
coveralls
basepython =
py27: python2.7
py35: python3.5
setenv =
HADOOP_DISTRO=cdh
HADOOP_HOME=/tmp/hadoop-cdh
HADOOP_OPTS=-D/tmp/krb5.conf
MINICLUSTER_HOME=/tmp/minicluster-1.1-SNAPSHOT
HIVE_HOME=/tmp/hive
backend_mysql: AIRFLOW__CORE__SQL_ALCHEMY_CONN=mysql://root@localhost/airflow
backend_postgres: AIRFLOW__CORE__SQL_ALCHEMY_CONN=postgresql+psycopg2://postgres@localhost/airflow
backend_sqlite: AIRFLOW__CORE__SQL_ALCHEMY_CONN=sqlite:///{homedir}/airflow/airflow.db
backend_sqlite: AIRFLOW__CORE__EXECUTOR=SequentialExecutor
passenv =
HOME
JAVA_HOME
TRAVIS
TRAVIS_BRANCH
TRAVIS_BUILD_DIR
TRAVIS_JOB_ID
USER
TRAVIS_CACHE
TRAVIS_PULL_REQUEST
PATH
BOTO_CONFIG
KRB5_CONFIG
KRB5_KTNAME
commands =
pip wheel -w {homedir}/.wheelhouse -f {homedir}/.wheelhouse -e .[devel_ci]
pip install --find-links={homedir}/.wheelhouse --no-index -e .[devel_ci]
sudo {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/load_data.sh
{toxinidir}/scripts/ci/run_tests.sh []
{toxinidir}/scripts/ci/check-license.sh
[testenv:flake8]
basepython = python3
deps =
flake8
commands =
{toxinidir}/scripts/ci/flake8_diff.sh