(arrow_compose_path)
| 334 | |
| 335 | |
| 336 | def test_compose_pull_params(arrow_compose_path): |
| 337 | expected_calls = [ |
| 338 | "pull --ignore-pull-failures conda-cpp", |
| 339 | "pull --ignore-pull-failures conda-python", |
| 340 | ] |
| 341 | compose = DockerCompose(arrow_compose_path, params=dict(UBUNTU='18.04')) |
| 342 | expected_env = PartialEnv(PYTHON='3.8', PANDAS='latest') |
| 343 | with assert_compose_calls(compose, expected_calls, env=expected_env): |
| 344 | compose.clear_pull_memory() |
| 345 | compose.pull('conda-python-pandas', pull_leaf=False) |
| 346 | |
| 347 | |
| 348 | def test_compose_build(arrow_compose_path): |
nothing calls this directly
no test coverage detected