Skip to content

Commit

Permalink
[AIRFLOW-640] Install and enable nose-ignore-docstring
Browse files Browse the repository at this point in the history
Closes apache#1896 from zodiac/nose-ignore-docstring
  • Loading branch information
ldct authored and r39132 committed Nov 21, 2016
1 parent ca6dbc6 commit dedc54e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions run_unit_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ if [ -z "$nose_args" ]; then
--cover-html \
--cover-package=airflow \
--cover-html-dir=airflow/www/static/coverage \
--with-ignore-docstrings \
-s \
-v \
--logging-level=DEBUG "
Expand Down
1 change: 1 addition & 0 deletions scripts/ci/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ mock
mysqlclient
nose
nose-exclude
nose-ignore-docstring==0.2
nose-parameterized
pandas
psutil>=4.2.0, <5.0.0
Expand Down
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,17 @@ def write_version(filename=os.path.join(*['airflow',
cloudant = ['cloudant>=0.5.9,<2.0'] # major update coming soon, clamp to 0.x

all_dbs = postgres + mysql + hive + mssql + hdfs + vertica + cloudant
devel = ['lxml>=3.3.4', 'nose', 'nose-parameterized', 'mock', 'click', 'jira', 'moto', 'freezegun']
devel = [
'click',
'freezegun'
'jira',
'lxml>=3.3.4',
'mock',
'moto',
'nose',
'nose-ignore-docstring==0.2',
'nose-parameterized',
]
devel_minreq = devel + mysql + doc + password + s3
devel_hadoop = devel_minreq + hive + hdfs + webhdfs + kerberos
devel_all = devel + all_dbs + doc + samba + s3 + slack + crypto + oracle + docker
Expand Down

0 comments on commit dedc54e

Please sign in to comment.