diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index 867d315c14..9d74e4017c 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -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] ), diff --git a/metadata-ingestion/tests/integration/vertica/test_vertica.py b/metadata-ingestion/tests/integration/vertica/test_vertica.py index 46d7ad987e..384dac9b8d 100644 --- a/metadata-ingestion/tests/integration/vertica/test_vertica.py +++ b/metadata-ingestion/tests/integration/vertica/test_vertica.py @@ -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):