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 bdfa7f3 commit 32becafCopy full SHA for 32becaf
tests/test_pytest_arraydiff.py
@@ -17,10 +17,13 @@ def test_succeeds_func_default():
17
def test_succeeds_func_text():
18
return np.arange(3 * 5).reshape((3, 5))
19
20
+
21
@pytest.mark.array_compare(file_format='pd_hdf', reference_dir=reference_dir)
22
def test_succeeds_func_pdhdf():
23
pd = pytest.importorskip('pandas')
- return pd.DataFrame(data=np.arange(20), columns=['test_data'])
24
+ return pd.DataFrame(data=np.arange(20, dtype='int64'),
25
+ columns=['test_data'])
26
27
28
@pytest.mark.array_compare(file_format='fits', reference_dir=reference_dir)
29
def test_succeeds_func_fits():
0 commit comments