Fang-Yu Rao has uploaded this change for review. ( http://gerrit.cloudera.org:8080/16347
Change subject: IMPALA-10092: Do not skip test vectors of Kudu tests in a custom cluster ...................................................................... IMPALA-10092: Do not skip test vectors of Kudu tests in a custom cluster We found that the following 4 tests do not run even we remove all the decorators like "@SkipIfKudu.no_hybrid_clock" or "@SkipIfHive3.kudu_hms_notifications_not_supported" to skip the tests. This is due to the fact that those 3 classes inherit the class of CustomClusterTestSuite, which adds a constraint that only allows test vectors with 'file_format' and 'compression_codec' being "text" and "none", respectively, to be run. 1. TestKuduOperations::test_local_tz_conversion_ops 2. TestKuduClientTimeout::test_impalad_timeout 3. TestKuduHMSIntegration::test_create_managed_kudu_tables 4. TestKuduHMSIntegration::test_kudu_alter_table To address this issue, in this patch we create a parent class for those 3 classes above and override the method of add_test_dimensions() for this newly created parent class so that we do not skip test vectors with 'file_format' and 'compression_codec' being "kudu" and "none", respectively. Testing: - Manually verified that after removing the decorators to skip those tests, those tests could be run. Change-Id: I495083e5d6526b46820fa9e329be99fc83f04583 --- M tests/custom_cluster/test_kudu.py 1 file changed, 22 insertions(+), 3 deletions(-) git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/47/16347/1 -- To view, visit http://gerrit.cloudera.org:8080/16347 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-Project: Impala-ASF Gerrit-Branch: master Gerrit-MessageType: newchange Gerrit-Change-Id: I495083e5d6526b46820fa9e329be99fc83f04583 Gerrit-Change-Number: 16347 Gerrit-PatchSet: 1 Gerrit-Owner: Fang-Yu Rao <[email protected]>
