Skip to content

Commit 7e5acef

Browse files
Fix CI failures due to imports in test_complex.py
1 parent e470c38 commit 7e5acef

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/tests/io/pytables/test_complex.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
import numpy as np
22
import pytest
3-
import tables
4-
53

64
import pandas as pd
5+
import pandas._testing as tm
76
from pandas import (
87
DataFrame,
98
HDFStore,
109
Series,
1110
read_hdf,
1211
)
13-
import pandas._testing as tm
12+
13+
14+
tables = pytest.importorskip("tables")
1415

1516

1617
def test_complex_fixed(tmp_path, setup_path):

0 commit comments

Comments
 (0)