Skip to content

Commit

Permalink
test(snowflake): pytest marks on Table.sample
Browse files Browse the repository at this point in the history
  • Loading branch information
IndexSeek committed Apr 28, 2024
1 parent feddb85 commit 036b683
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ibis/backends/tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1924,6 +1924,11 @@ def test_dynamic_table_slice_with_computed_offset(backend):


@pytest.mark.notimpl(["druid", "polars"])
@pytest.mark.notimpl(
["snowflake"],
raises=SnowflakeProgrammingError,
reason="SAMPLE clause on views only supports row wise sampling without seed.",
)
@pytest.mark.notimpl(
["risingwave"],
raises=PsycoPg2InternalError,
Expand All @@ -1944,7 +1949,7 @@ def test_sample(backend):
backend.assert_frame_equal(empty, df.iloc[:0])


@pytest.mark.notimpl(["druid", "polars", "snowflake"])
@pytest.mark.notimpl(["druid", "polars"])
@pytest.mark.notimpl(
["risingwave"],
raises=PsycoPg2InternalError,
Expand Down

0 comments on commit 036b683

Please sign in to comment.