Skip to content

Commit

Permalink
skip broken tests, link to the issue for resolution (#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare authored Jun 21, 2024
1 parent 7850da3 commit ba5b3f0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/functional/adapter/test_python_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ class TestPythonModelSpark(BasePythonModelTests):

@pytest.mark.skip_profile("apache_spark", "spark_session", "databricks_sql_endpoint")
class TestPySpark(BasePySparkTests):
pass
@pytest.mark.skip("https://github.com/dbt-labs/dbt-spark/issues/1054")
def test_different_dataframes(self, project):
return super().test_different_dataframes(project)


@pytest.mark.skip_profile("apache_spark", "spark_session", "databricks_sql_endpoint")
Expand Down Expand Up @@ -69,6 +71,7 @@ class TestChangingSchemaSpark:
def models(self):
return {"simple_python_model.py": models__simple_python_model}

@pytest.mark.skip("https://github.com/dbt-labs/dbt-spark/issues/1054")
def test_changing_schema_with_log_validation(self, project, logs_dir):
run_dbt(["run"])
write_file(
Expand Down

0 comments on commit ba5b3f0

Please sign in to comment.