From 109ffc9600d280ada237e11e865eeafea58b70ed Mon Sep 17 00:00:00 2001 From: Niel Drummond Date: Mon, 17 Oct 2022 18:31:16 +0100 Subject: [PATCH] Filter CircleCI containers after prune in tests --- tests/container_test.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/container_test.rs b/tests/container_test.rs index d6569e85..fa9a44c3 100644 --- a/tests/container_test.rs +++ b/tests/container_test.rs @@ -521,7 +521,10 @@ async fn prune_containers_test(docker: Docker) -> Result<(), Error> { "bollard", "registry:2", "stefanscherer/registry-windows", - "moby/buildkit:master" + "moby/buildkit:master", + // Containers existing on CircleCI after a prune + "docker:20.10.16", + "public.ecr.aws/eks-distro/kubernetes/pause:3.6" ] .into_iter() .all(|v| v != r.image.as_ref().unwrap()))