(s, expected)
| 2963 | [("x", ValueError), ("1", 1.0), ("123.5", 123.5), ("2.5", 2.5), ("None", None)], |
| 2964 | ) |
| 2965 | def test_float_from_string(s, expected): |
| 2966 | _from_string_test(Float, s, expected) |
| 2967 | |
| 2968 | |
| 2969 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…