Skip to content

Commit f182aa8

Browse files
committed
Skip vecmat & matvec in NumPy tests.
1 parent 385328b commit f182aa8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/lax_numpy_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6446,7 +6446,8 @@ def testWrappedSignaturesMatch(self):
64466446
_available_numpy_dtypes: list[str] = [dtype.__name__ for dtype in jtu.dtypes.all
64476447
if dtype != dtypes.bfloat16]
64486448

6449-
UNIMPLEMENTED_UFUNCS = {'spacing'}
6449+
# TODO(jakevdp): implement missing ufuncs.
6450+
UNIMPLEMENTED_UFUNCS = {'spacing', 'matvec', 'vecmat'}
64506451

64516452

64526453
def _all_numpy_ufuncs() -> Iterator[str]:

0 commit comments

Comments
 (0)