Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
Signed-off-by: Chmouel Boudjnah <[email protected]>
  • Loading branch information
chmouel committed Dec 18, 2024
1 parent 81b20ed commit d93b30e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ test-e2e-cleanup: ## cleanup test e2e namespace/pr left open

.PHONY: test-e2e
test-e2e: test-e2e-cleanup ## run e2e tests
@env GODEBUG=asynctimerchan=1 \
go test $(GO_TEST_FLAGS) -timeout $(TIMEOUT_E2E) -failfast -count=1 -tags=e2e $(GO_TEST_FLAGS) ./test
env GODEBUG=asynctimerchan=1 \
go test -timeout $(TIMEOUT_E2E) -failfast -count=1 -tags=e2e -v $(GO_TEST_FLAGS) ./test

.PHONY: html-coverage
html-coverage: ## generate html coverage
Expand Down
5 changes: 1 addition & 4 deletions hack/gh-workflow-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,7 @@ run_e2e_tests() {

mapfile -t tests < <(get_tests "${target}")
echo "About to run ${#tests[@]} tests: ${tests[*]}"
env GO_TEST_FLAGS="-run '$(
IFS='|'
echo "${tests[*]}"
)'" make test-e2e
GO_TEST_FLAGS="-run \"$(echo "${tests[*]}" | sed 's/ /|/g')\"" make test-e2e
}

collect_logs() {
Expand Down

0 comments on commit d93b30e

Please sign in to comment.