You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by bh...@apache.org on 2019/09/16 17:05:33 UTC

[impala] 02/03: IMPALA-8572: Skip test_lineage_output on S3

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

bharathv pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git

commit d155ef01f5708febf296dd0c2d0db921240bafb1
Author: Bharath Vissapragada <bh...@cloudera.com>
AuthorDate: Sun Sep 15 17:43:53 2019 -0700

    IMPALA-8572: Skip test_lineage_output on S3
    
    The test has a hbase dependency that does not run in S3.
    
    Change-Id: I781c2dc42c042747eed6134cea4f3f0879a40294
    Reviewed-on: http://gerrit.cloudera.org:8080/14230
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
    Reviewed-by: Sahil Takiar <st...@cloudera.com>
---
 tests/custom_cluster/test_lineage.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/custom_cluster/test_lineage.py b/tests/custom_cluster/test_lineage.py
index 992acf4..33b3e99 100644
--- a/tests/custom_cluster/test_lineage.py
+++ b/tests/custom_cluster/test_lineage.py
@@ -26,6 +26,7 @@ import tempfile
 import time
 
 from tests.common.custom_cluster_test_suite import CustomClusterTestSuite
+from tests.common.skip import SkipIfS3
 
 LOG = logging.getLogger(__name__)
 
@@ -106,6 +107,7 @@ class TestLineage(CustomClusterTestSuite):
               assert "{0}.lineage_test_tbl".format(unique_database) == table_name
               assert table_create_time != -1
 
+  @SkipIfS3.hbase
   @pytest.mark.execute_serially
   @CustomClusterTestSuite.with_args("--lineage_event_log_dir={0}"
                                     .format(LINEAGE_TESTS_DIR))