Skip to content

Commit

Permalink
test(pandas,dask): force table drop in fixture cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth authored and cpcloud committed Mar 14, 2023
1 parent 0690b24 commit 969e26b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/tests/test_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def tmptable(con):

# some backends don't implement drop
with contextlib.suppress(NotImplementedError):
con.drop_table(name)
con.drop_table(name, force=True)


@pytest.mark.notimpl(["clickhouse"], reason=".create_table not yet implemented in ibis")
Expand Down

0 comments on commit 969e26b

Please sign in to comment.