You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/dask/array/tests/test_testing.py

20 lines
483 B

import sys
import pytest
import numpy as np
import dask.array as da
from dask.array.utils import assert_eq
@pytest.mark.skipif(sys.flags.optimize, reason="Assertions disabled.")
def test_assert_eq_checks_scalars():
# https://github.com/dask/dask/issues/2680
with pytest.raises(AssertionError):
assert_eq(np.array(0), np.array(1))
a = da.from_array(np.array([0]), 1)[0]
b = np.array([1])[0]
with pytest.raises(AssertionError):
assert_eq(a, b)