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