We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae57f21 commit efa027bCopy full SHA for efa027b
1 file changed
test/e2e/bundle_test.go
@@ -380,6 +380,11 @@ func createNamespaceAndDeployFunction() string {
380
Expect(err).NotTo(HaveOccurred())
381
_, _ = fmt.Fprint(GinkgoWriter, out)
382
383
+ // cleanup the repo to not run into resource issues
384
+ cmd = exec.Command("rm", "-rf", tempDir)
385
+ _, err = utils.Run(cmd)
386
+ Expect(err).NotTo(HaveOccurred())
387
+
388
return ns
389
}
390
0 commit comments