kaxil commented on pull request #11220:
URL: https://github.com/apache/airflow/pull/11220#issuecomment-733967559


   Test is failing:
   
   ```
   =================================== FAILURES 
===================================
   _______________ TestHiveMetastoreHook.test_get_partition_by_name 
_______________
   
   self = <tests.providers.apache.hive.hooks.test_hive.TestHiveMetastoreHook 
testMethod=test_get_partition_by_name>
   
       def test_get_partition_by_name(self):
           FakeFieldSchema = namedtuple('FakeFieldSchema', ['name'])
           fake_schema = FakeFieldSchema('ds')
           FakePartition = namedtuple('FakePartition', ['values'])
           fake_partition = FakePartition(['2015-01-01'])
           FakePartitionDetails = namedtuple(
               'FakePartitionDetails', ['partitionKey', 'partitionValue', 
'details']
           )
           fake_partition_details = FakePartitionDetails(
   >           [fake_schema.name, fake_partition.values, {'totalSize': 5000, 
'numRows': 30}]
           )
   E       TypeError: __new__() missing 2 required positional arguments: 
'partitionValue' and 'details'
   
   tests/providers/apache/hive/hooks/test_hive.py:534: TypeError
   =============================== warnings summary 
===============================
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to