(
expected_wheel, # type: str
target=None, # type: Optional[Target]
)
| 174 | ) |
| 175 | |
| 176 | def assert_pyarrow_downloaded( |
| 177 | expected_wheel, # type: str |
| 178 | target=None, # type: Optional[Target] |
| 179 | ): |
| 180 | # type: (...) -> None |
| 181 | download_pyarrow(target=target).wait() |
| 182 | assert [expected_wheel] == os.listdir(download_dir) |
| 183 | |
| 184 | assert_pyarrow_downloaded( |
| 185 | "pyarrow-4.0.1-cp39-cp39-manylinux2014_x86_64.whl", target=LocalInterpreter.create(py39) |
no test coverage detected