We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40ab14a commit 55584f7Copy full SHA for 55584f7
tests/test_pytest_arraydiff.py
@@ -24,6 +24,7 @@ def test_succeeds_func_text():
24
@pytest.mark.skipif(not NUMPY_LT_2_0, reason="AttributeError: `np.unicode_` was removed in the NumPy 2.0 release. Use `np.str_` instead.")
25
@pytest.mark.array_compare(file_format='pd_hdf', reference_dir=reference_dir)
26
def test_succeeds_func_pdhdf():
27
+ pytest.importorskip('tables') # Need this "optional" dependency
28
pd = pytest.importorskip('pandas')
29
return pd.DataFrame(data=np.arange(20, dtype='int64'),
30
columns=['test_data'])
0 commit comments