Test: add weights to unsupported arguments

This commit is contained in:
Jake VanderPlas 2024-01-24 10:44:51 -08:00
parent 322f8b22bd
commit cedd67d611

View File

@ -5657,11 +5657,15 @@ class NumpySignaturesTest(jtu.JaxTestCase):
'histogram2d': ['normed'],
'histogramdd': ['normed'],
'linspace': ['device'],
'nanpercentile': ['weights'],
'nanquantile': ['weights'],
'nanstd': ['correction', 'mean'],
'nanvar': ['correction', 'mean'],
'ones': ['device', 'order', 'like'],
'ones_like': ['device', 'subok', 'order'],
'partition': ['kind', 'order'],
'percentile': ['weights'],
'quantile': ['weights'],
'row_stack': ['casting'],
'stack': ['casting'],
'std': ['correction', 'mean'],