mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix: Skips Hive tests that are blocking PRs (#27605)
(cherry picked from commit 718cd64657)
This commit is contained in:
committed by
Michael S. Molina
parent
4b750c0caf
commit
634d72b19d
@@ -62,6 +62,8 @@ from superset.common.chart_data import ChartDataResultFormat, ChartDataResultTyp
|
||||
from tests.common.query_context_generator import ANNOTATION_LAYERS
|
||||
from tests.integration_tests.fixtures.query_context import get_query_context
|
||||
|
||||
from tests.integration_tests.test_app import app
|
||||
|
||||
|
||||
CHART_DATA_URI = "api/v1/chart/data"
|
||||
CHARTS_FIXTURE_COUNT = 10
|
||||
@@ -79,6 +81,13 @@ INCOMPATIBLE_ADHOC_COLUMN_FIXTURE: AdhocColumn = {
|
||||
}
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def skip_by_backend():
|
||||
with app.app_context():
|
||||
if backend() == "hive":
|
||||
pytest.skip("Skipping tests for Hive backend")
|
||||
|
||||
|
||||
class BaseTestChartDataApi(SupersetTestCase):
|
||||
query_context_payload_template = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user