Skip to content

Commit

Permalink
test: kubeapi-aws
Browse files Browse the repository at this point in the history
  • Loading branch information
danielerez committed Oct 9, 2024
1 parent 3c71a8f commit 2d9fb14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ ifeq ($(VERBOSE), true)
endif

GOTEST_FLAGS = --format=$(GO_TEST_FORMAT) $(GOTEST_PUBLISH_FLAGS) -- -count=1 -cover -coverprofile=$(REPORTS)/$(TEST_SCENARIO)_coverage.out
GINKGO_FLAGS = -ginkgo.focus="$(FOCUS)" -ginkgo.v -ginkgo.skip="$(SKIP)" -ginkgo.v -ginkgo.reportFile=./junit_$(TEST_SCENARIO)_test.xml
GINKGO_FLAGS = -ginkgo.failFast -ginkgo.focus="$(FOCUS)" -ginkgo.v -ginkgo.skip="$(SKIP)" -ginkgo.v -ginkgo.reportFile=./junit_$(TEST_SCENARIO)_test.xml

COVER_PROFILE := $(or ${COVER_PROFILE},$(REPORTS)/unit_coverage.out)
GINKGO_REPORTFILE := $(or $(GINKGO_REPORTFILE), ./junit_unit_test.xml)
Expand Down
2 changes: 1 addition & 1 deletion subsystem/kubeapi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ func verifyCleanUP(ctx context.Context, client k8sclient.Client) {
err := client.List(ctx, bareMetalHostList, k8sclient.InNamespace(Options.Namespace))
Expect(err).To(BeNil())
return len(bareMetalHostList.Items)
}, "2m", "2s").Should(Equal(0))
}, "3m", "2s").Should(Equal(0))
}

func generateTestCertificate() (string, error) {
Expand Down

0 comments on commit 2d9fb14

Please sign in to comment.