()
| 108 | |
| 109 | |
| 110 | def test_keywargs(): |
| 111 | if not has_scipy: |
| 112 | pytest.skip("scipy is not installed.") |
| 113 | |
| 114 | da = get_example_data(0) |
| 115 | assert_equal(da.interp(x=[0.5, 0.8]), da.interp({"x": [0.5, 0.8]})) |
| 116 | |
| 117 | |
| 118 | @pytest.mark.parametrize("method", ["linear", "cubic"]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…