(request: pytest.FixtureRequest)
| 40 | |
| 41 | @pytest.fixture(params=constructors) |
| 42 | def constructor(request: pytest.FixtureRequest): |
| 43 | return request.param # type: ignore[no-any-return] |
| 44 | |
| 45 | |
| 46 | @pytest.fixture(params=["pandas", "pyarrow", "polars"]) |
no outgoing calls
no test coverage detected