Skip to content

Commit 71639af

Browse files
authored
Merge pull request #122 from honno/prod-partial-dtypes
Ignore asserting out dtype for undefined dtypes in `test_prod`
2 parents 88aed26 + c858db8 commit 71639af

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

array_api_tests/test_statistical_functions.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
from . import pytest_helpers as ph
1313
from . import shape_helpers as sh
1414
from . import xps
15+
from ._array_module import _UndefinedStub
1516
from .typing import DataType
1617

1718
pytestmark = pytest.mark.ci
@@ -144,7 +145,10 @@ def test_prod(x, data):
144145
_dtype = dh.default_float
145146
else:
146147
_dtype = dtype
147-
ph.assert_dtype("prod", x.dtype, out.dtype, _dtype)
148+
# We ignore asserting the out dtype if what we expect is undefined
149+
# See https://github.com/data-apis/array-api-tests/issues/106
150+
if not isinstance(_dtype, _UndefinedStub):
151+
ph.assert_dtype("prod", x.dtype, out.dtype, _dtype)
148152
_axes = sh.normalise_axis(kw.get("axis", None), x.ndim)
149153
ph.assert_keepdimable_shape(
150154
"prod", x.shape, out.shape, _axes, kw.get("keepdims", False), **kw

0 commit comments

Comments
 (0)