(client, image)
| 7 | |
| 8 | @pytest.fixture(scope="module", autouse=True) |
| 9 | def solid_server(client, image): |
| 10 | container = client.containers.run( |
| 11 | image.id, |
| 12 | name="solid_server", |
| 13 | detach=True, |
| 14 | tty=True |
| 15 | ) |
| 16 | wait_for_container(container) |
| 17 | yield container |
| 18 | container.remove(force=True) |
| 19 | |
| 20 | |
| 21 | @pytest.fixture(scope="module", autouse=True) |
nothing calls this directly
no test coverage detected