Skip to content

Commit

Permalink
Fix skip to skipif for test_dataframe_str_empty (#916)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenv authored Feb 7, 2022
1 parent 84ce42f commit 852673c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/tests/test_pandas_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ def test_dataframe_empty(self):
with tiledb.open(uri) as A:
tm.assert_frame_equal(df.iloc[:0], A.df[tiledb.EmptyRange])

@pytest.mark.skip(
@pytest.mark.skipif(
tiledb.libtiledb.version() < (2, 4, 3),
reason="Skip this test to avoid abort: requires TileDB#2540 in TileDB 2.4.3",
)
Expand Down

0 comments on commit 852673c

Please sign in to comment.