Merge pull request #27138 from nimdrak/27116

test: remove hack workaround in 'use plugin in containers'
This commit is contained in:
openshift-merge-bot[bot]
2025-09-24 08:47:01 +00:00
committed by GitHub

View File

@ -188,13 +188,6 @@ var _ = Describe("Podman volume plugins", func() {
ctr2.WaitWithDefaultTimeout()
Expect(ctr2).Should(ExitCleanly())
Expect(ctr2.OutputToString()).To(ContainSubstring("helloworld"))
// HACK: `volume rm -f` is timing out trying to remove containers using the volume.
// Solution: remove them manually...
// TODO: fix this when I get back
rmAll := podmanTest.Podman([]string{"rm", "-f", ctr2Name, ctr1Name})
rmAll.WaitWithDefaultTimeout()
Expect(rmAll).Should(ExitCleanly())
})
It("podman volume reload", func() {