Skip to content
Open
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
7 changes: 4 additions & 3 deletions pandas/tests/io/pytables/test_categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@
from pandas import (
Categorical,
DataFrame,
HDFStore,
Series,
_testing as tm,
concat,
read_hdf,
)
from pandas.tests.io.pytables.common import (
_maybe_remove,
ensure_clean_store,
)

pytestmark = [pytest.mark.single_cpu]


def test_categorical(setup_path):
with ensure_clean_store(setup_path) as store:
def test_categorical(tmp_path):
path = tmp_path / "test_categorical.h5"
with HDFStore(path) as store:
# Basic
_maybe_remove(store, "s")
s = Series(
Expand Down
Loading