File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2645,8 +2645,6 @@ def test_cdf(self):
26452645 self .assertEqual (X .cdf (float ('Inf' )), 1.0 )
26462646 self .assertTrue (math .isnan (X .cdf (float ('NaN' ))))
26472647
2648- # TODO: RUSTPYTHON
2649- @unittest .expectedFailure
26502648 @support .skip_if_pgo_task
26512649 def test_inv_cdf (self ):
26522650 NormalDist = self .module .NormalDist
@@ -2920,6 +2918,11 @@ def setUp(self):
29202918 def tearDown (self ):
29212919 sys .modules ['statistics' ] = statistics
29222920
2921+ # TODO: RUSTPYTHON, ValueError: math domain error
2922+ @unittest .expectedFailure
2923+ def test_inv_cdf (self ): # TODO: RUSTPYTHON, remove when this passes
2924+ super ().test_inv_cdf () # TODO: RUSTPYTHON, remove when this passes
2925+
29232926
29242927@unittest .skipUnless (c_statistics , 'requires _statistics' )
29252928class TestNormalDistC (unittest .TestCase , TestNormalDist ):
You can’t perform that action at this time.
0 commit comments