(client, solid_server)
| 20 | |
| 21 | @pytest.fixture(scope="module", autouse=True) |
| 22 | def container(client, solid_server): |
| 23 | container = client.containers.run( |
| 24 | 'alpine', |
| 25 | name="test_container", |
| 26 | detach=True, |
| 27 | tty=True, |
| 28 | volumes_from=solid_server.id |
| 29 | ) |
| 30 | yield container |
| 31 | container.remove(force=True) |
| 32 | |
| 33 | |
| 34 | def test_solid_data_dir_is_mounted(host): |