Skip to content

Commit

Permalink
Minor tweaks to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rhkp committed Oct 2, 2024
1 parent f7b037c commit 23d23a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ else ifeq ($(label), platform)
@echo "📦 Running e2e tests for platform..."
go test ./test/e2e/e2e_suite_test.go ./test/e2e/helpers.go ./test/e2e/platform_test.go \
-v -ginkgo.v -ginkgo.no-color -ginkgo.github-output -ginkgo.label-filter=$(label) \
-ginkgo.junit-report=./e2e-test-report-platform_test.xml -timeout 60m;
-ginkgo.junit-report=./e2e-test-report-platform_test.xml -timeout 90m;
else ifeq ($(label), flows-non-persistence)
@echo "🔄 Running e2e tests for flows-non-persistence..."
go test ./test/e2e/e2e_suite_test.go ./test/e2e/helpers.go ./test/e2e/workflow_test.go \
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/platform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ var _ = Describe("Platform Use Cases :: ", Label("platform"), Ordered, func() {
var manifests []byte
EventuallyWithOffset(1, func() error {
var err error
cmd := exec.Command("kubectl", "kustomize", testcaseDir + "/pg-service")
cmd := exec.Command("kubectl", "kustomize", testcaseDir+"/pg-service")
manifests, err = utils.Run(cmd)
return err
}, time.Minute, time.Second).Should(Succeed())
Expand All @@ -240,7 +240,7 @@ var _ = Describe("Platform Use Cases :: ", Label("platform"), Ordered, func() {
By("Deploy the CR")
EventuallyWithOffset(1, func() error {
var err error
cmd := exec.Command("kubectl", "kustomize", testcaseDir + "/sonataflow-platform")
cmd := exec.Command("kubectl", "kustomize", testcaseDir+"/sonataflow-platform")
manifests, err = utils.Run(cmd)
return err
}, time.Minute, time.Second).Should(Succeed())
Expand Down

0 comments on commit 23d23a6

Please sign in to comment.