-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Open
Labels
maintenanceItems related to regular maintenance tasksItems related to regular maintenance tasksscipy.special
Description
scipy/scipy/special/tests/test_basic.py
Lines 4015 to 4026 in 5568abf
| class TestMathieu: | |
| def test_mathieu_a(self): | |
| pass | |
| def test_mathieu_even_coef(self): | |
| special.mathieu_even_coef(2,5) | |
| # Q not defined broken and cannot figure out proper reporting order | |
| def test_mathieu_odd_coef(self): | |
| # same problem as above | |
| pass |
But I'm not sure what that comment is referring to 🤔
The empty mathieu_a test also looks pretty odd (pun intended), but for that one there at least seems to be a smoketest:
scipy/scipy/special/tests/test_basic.py
Lines 547 to 551 in 5568abf
| def test_mathieu_a(self): | |
| assert_equal(cephes.mathieu_a(1,0),1.0) | |
| def test_mathieu_b(self): | |
| assert_equal(cephes.mathieu_b(1,0),1.0) |
But clearly there's also room for improvement here.
Metadata
Metadata
Assignees
Labels
maintenanceItems related to regular maintenance tasksItems related to regular maintenance tasksscipy.special