IMPALA-5305: test_observability.py failing on s3, localFS and Isilon A test that was recently added, test_observability::test_scan_summary, uses an HBase table. It needs to be restricted not to run on S3, localFS or Isilon.
Change-Id: I9863cf3f885eb1d2152186de34e093497af83d99 Reviewed-on: http://gerrit.cloudera.org:8080/6859 Reviewed-by: Alex Behm <[email protected]> Reviewed-by: Matthew Jacobs <[email protected]> Reviewed-by: Thomas Tauber-Marshall <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/f195b757 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/f195b757 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/f195b757 Branch: refs/heads/master Commit: f195b7577c268b794180da50b1f3aaf01304f3a1 Parents: 1ada9da Author: Thomas Tauber-Marshall <[email protected]> Authored: Thu May 11 11:57:09 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Fri May 12 19:34:16 2017 +0000 ---------------------------------------------------------------------- tests/query_test/test_observability.py | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/f195b757/tests/query_test/test_observability.py ---------------------------------------------------------------------- diff --git a/tests/query_test/test_observability.py b/tests/query_test/test_observability.py index d2b27c3..1b5cf25 100644 --- a/tests/query_test/test_observability.py +++ b/tests/query_test/test_observability.py @@ -16,6 +16,7 @@ # under the License. from tests.common.impala_test_suite import ImpalaTestSuite +from tests.common.skip import SkipIfS3, SkipIfIsilon, SkipIfLocal class TestObservability(ImpalaTestSuite): @classmethod @@ -51,6 +52,9 @@ class TestObservability(ImpalaTestSuite): assert result.exec_summary[5]['num_rows'] == 25 assert result.exec_summary[5]['est_num_rows'] == 25 + @SkipIfS3.hbase + @SkipIfLocal.hbase + @SkipIfIsilon.hbase def test_scan_summary(self): """IMPALA-4499: Checks that the exec summary for scans show the table name.""" # HDFS table
