mirror of
https://github.com/containers/podman.git
synced 2025-06-16 06:29:16 +08:00
Add podman rm --depend
This option causes Podman to not only remove the specified containers but all of the containers that depend on the specified containers. Fixes: https://github.com/containers/podman/issues/10360 Also ran codespell on the code Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
@ -99,7 +99,7 @@ class ContainerTestCase(APITestCase):
|
||||
|
||||
def test_delete(self):
|
||||
r = requests.delete(self.uri(self.resolve_container("/containers/{}?force=true")))
|
||||
self.assertEqual(r.status_code, 204, r.text)
|
||||
self.assertEqual(r.status_code, 200, r.text)
|
||||
|
||||
def test_stop(self):
|
||||
r = requests.post(self.uri(self.resolve_container("/containers/{}/start")))
|
||||
|
Reference in New Issue
Block a user