From db59207ffeae293ca6787d6f1c6e170bb8e6ddc2 Mon Sep 17 00:00:00 2001 From: Teddy Date: Thu, 15 Jun 2023 20:27:44 +0200 Subject: [PATCH] temporarly disable dbt test while working on #11895 (#11997) --- ingestion/tests/cli_e2e/base/test_cli_dbt.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ingestion/tests/cli_e2e/base/test_cli_dbt.py b/ingestion/tests/cli_e2e/base/test_cli_dbt.py index 858bccab3e5..a3fe07d256e 100644 --- a/ingestion/tests/cli_e2e/base/test_cli_dbt.py +++ b/ingestion/tests/cli_e2e/base/test_cli_dbt.py @@ -40,7 +40,10 @@ class CliDBTBase(TestCase): self.assert_for_vanilla_ingestion(source_status, sink_status) # 2. deploy dbt ingestion - @pytest.mark.order(2) + # @pytest.mark.order(2) + @pytest.mark.skip( + reason="disabling until we fix the test cases. enable once https://github.com/open-metadata/OpenMetadata/issues/11895 is done" + ) def test_dbt_ingestion(self) -> None: # run the dbt ingestion result = self.run_command(test_file_path=self.dbt_file_path) @@ -67,7 +70,10 @@ class CliDBTBase(TestCase): self.assertTrue(len(table.tags) > 0) # 4. run tests on dbt test cases and test results - @pytest.mark.order(4) + # @pytest.mark.order(4) + @pytest.mark.skip( + reason="disabling until we fix the test cases. enable once https://github.com/open-metadata/OpenMetadata/issues/11895 is done" + ) def test_dbt_test_cases(self) -> None: test_suite: TestSuite = self.openmetadata.get_by_name( entity=TestSuite, fqn="DBT TEST SUITE"