You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/06/03 11:50:22 UTC

[airflow] branch master updated (11d726d -> 10796cb)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from 11d726d  Add query count test for SchedulerJob (#9088)
     add 10796cb  Remove Hive/Hadoop/Java dependency from unit tests (#9029)

No new revisions were added by this update.

Summary of changes:
 Dockerfile.ci                                      |  50 +--
 airflow/providers/apache/hive/operators/hive.py    |  14 +
 .../apache/hive/sensors/hive_partition.py          |   2 +-
 .../providers/apache/hdfs/sensors/test_webhdfs.py  |   6 +-
 tests/providers/apache/hive/hooks/test_hive.py     | 462 ++++++++++++++++-----
 tests/providers/apache/hive/operators/test_hive.py | 123 +++++-
 .../apache/hive/operators/test_hive_stats.py       |  57 ++-
 .../apache/hive/operators/test_hive_to_mysql.py    |  88 ++--
 .../apache/hive/operators/test_hive_to_samba.py    |  42 +-
 .../apache/hive/operators/test_mysql_to_hive.py    | 291 +++++++++----
 .../apache/hive/sensors/test_hive_partition.py     |   7 +-
 .../hive/sensors/test_metastore_partition.py       |   6 +-
 .../hive/sensors/test_named_hive_partition.py      |  54 ++-
 tests/test_utils/mock_hooks.py                     |  96 +++++
 tests/test_utils/mock_operators.py                 |   8 +
 tests/test_utils/mock_process.py                   |  87 ++++
 16 files changed, 1090 insertions(+), 303 deletions(-)
 create mode 100644 tests/test_utils/mock_hooks.py
 create mode 100644 tests/test_utils/mock_process.py