Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skip broken tests, link to the issue for resolution #1056

Merged
merged 1 commit into from
Jun 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading