pytest.mark.parametrize(
"func",
[
lambda x: np.append(x, x),
lambda x: np.concatenate([x, x, x]),
lambda x: np.cov(x, x),
lambda x: np.dot(x, x),
lambd
| 1 | from __future__ import annotations |
| 2 | |
| 3 | import numpy as np |
| 4 | import pytest |
nothing calls this directly
no outgoing calls
no test coverage detected