Skip to content

Commit

Permalink
Just use wait, with no polling, just verbose output
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Nola <derek.nola@suse.com>
  • Loading branch information
dereknola committed Jan 31, 2025
1 parent 1ea6742 commit 3c98a05
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions tests/docker/conformance/conformance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,15 @@ var _ = Describe("Conformance Tests", Ordered, func() {
if *serial {
Skip("Skipping parallel conformance tests")
}
cmd := fmt.Sprintf("%s --focus=\"Conformance\" --skip=\"Serial|Flaky\" -p %d --extra-ginkgo-args=\"%s\" --kubeconfig %s",
cmd := fmt.Sprintf("%s --focus=\"Conformance\" --skip=\"Serial|Flaky\" -v 6 -p %d --extra-ginkgo-args=\"%s\" --kubeconfig %s",

Check failure on line 65 in tests/docker/conformance/conformance_test.go

View workflow job for this annotation

GitHub Actions / Build Go Tests

fmt.Sprintf format %s reads arg #4, but call has 3 args
filepath.Join(config.TestDir, "hydrophone"),
runtime.NumCPU()/2,
"--poll-progress-after=60s,--poll-progress-interval=120s",
// "--poll-progress-after=60s,--poll-progress-interval=120s",
config.KubeconfigFile)
By("Hydrophone: " + cmd)
hc, err := StartCmd(cmd)
Expect(err).NotTo(HaveOccurred())
Eventually(func() bool {
if hc.ProcessState == nil {
return false
}
return hc.ProcessState.Success()
}, "40m", "1m").Should(BeTrue())
Expect(hc.Wait()).To(Succeed())
})
It("should run serial conformance tests", func() {
if !*serial {
Expand Down

0 comments on commit 3c98a05

Please sign in to comment.