fix(ingest): temporarily disable vertica tests (#7059)

This commit is contained in:
Harshal Sheth 2023-01-17 12:37:16 -08:00 committed by GitHub
parent 7192f1699d
commit 890dae0199
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -438,7 +438,6 @@ base_dev_requirements = {
"starburst-trino-usage",
"powerbi",
"powerbi-report-server",
"vertica",
"salesforce",
"unity-catalog"
# airflow is added below
@ -474,7 +473,7 @@ full_test_dev_requirements = {
"mysql",
"mariadb",
"redash",
"vertica",
# "vertica",
]
for dependency in plugins[plugin]
),

View File

@ -7,6 +7,10 @@ from tests.test_helpers.docker_helpers import is_responsive, wait_for_port
FROZEN_TIME = "2020-04-14 07:00:00"
pytestmark = pytest.mark.skip(
reason="Vertica tests are disabled due to a dependency conflict with SQLAlchemy 1.3.24"
)
@pytest.fixture(scope="module")
def test_resources_dir(pytestconfig):