diff --git a/tests/functional/adapter/test_persist_test_results.py b/tests/functional/adapter/test_persist_test_results.py index 1b96762e5..a8b5fda54 100644 --- a/tests/functional/adapter/test_persist_test_results.py +++ b/tests/functional/adapter/test_persist_test_results.py @@ -3,6 +3,16 @@ from dbt.tests.adapter.persist_test_results.basic import PersistTestResults -@pytest.mark.skip_profile("apache_spark", "spark_session") -class TestPersistTestResults(PersistTestResults): +@pytest.mark.skip_profile("spark_session", "apache_spark") +class TestPersistTestResultsDatabricks(PersistTestResults): pass + + +@pytest.mark.skip_profile("spark_session", "databricks_cluster", "databricks_sql_endpoint") +class TestPersistTestResultsSpark(PersistTestResults): + @pytest.fixture(scope="class") + def project_config_update(self): + return { + "seeds": {"quote_columns": True}, + "tests": {"+schema": self.audit_schema_suffix}, + }