Skip to content

Commit

Permalink
xfail test_delta_atomic_create_table_as_select and test_delta_atomic_…
Browse files Browse the repository at this point in the history
…replace_table_as_select
  • Loading branch information
razajafri committed Nov 12, 2023
1 parent 00b498e commit ea2fd40
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions integration_tests/src/main/python/delta_lake_write_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,15 @@ def do_write(spark, path):
@delta_lake
@ignore_order(local=True)
@pytest.mark.skipif(is_before_spark_320(), reason="Delta Lake writes are not supported before Spark 3.2.x")
@pytest.mark.xfail(condition=is_spark_340_or_later() and is_databricks_runtime(), reason="https://github.com/NVIDIA/spark-rapids/issues/9676")
def test_delta_atomic_create_table_as_select(spark_tmp_table_factory, spark_tmp_path):
_atomic_write_table_as_select(delta_write_gens, spark_tmp_table_factory, spark_tmp_path, overwrite=False)

@allow_non_gpu(*delta_meta_allow)
@delta_lake
@ignore_order(local=True)
@pytest.mark.skipif(is_before_spark_320(), reason="Delta Lake writes are not supported before Spark 3.2.x")
@pytest.mark.xfail(condition=is_spark_340_or_later() and is_databricks_runtime(), reason="https://github.com/NVIDIA/spark-rapids/issues/9676")
def test_delta_atomic_replace_table_as_select(spark_tmp_table_factory, spark_tmp_path):
_atomic_write_table_as_select(delta_write_gens, spark_tmp_table_factory, spark_tmp_path, overwrite=True)

Expand Down

0 comments on commit ea2fd40

Please sign in to comment.