Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ html_report: ## Generate HTML report out of the last ran integration test logs.
# install gopogh if not already installed
@if ! command -v gopogh >/dev/null 2>&1; then \
echo "gopogh not found, installing..."; \
GOBIN=$(shell go env GOPATH)/bin go install github.com/medyagh/gopogh/cmd/gopogh@latest; \
GOBIN=$(shell go env GOPATH)/bin go install github.com/medyagh/gopogh/cmd/gopogh@v0.29.0; \
fi
@gopogh -in "./out/testout_$(COMMIT_SHORT).json" -out ./out/testout_$(COMMIT_SHORT).html -name "$(shell git rev-parse --abbrev-ref HEAD)" -pr "" -repo github.com/kubernetes/minikube/ -details "${COMMIT_SHORT}"
@echo "-------------------------- Open HTML Report in Browser: ---------------------------"
Expand Down
2 changes: 1 addition & 1 deletion hack/legacy_fill_db/filldb.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var existingEnvironments = make(map[string]map[string]struct{})
func main() {
gp, err := exec.LookPath("gopogh")
if err != nil {
log.Fatalf("missing gopogh. Run 'go install github.com/medyagh/gopogh/cmd/gopogh@latest': %v", err)
log.Fatalf("missing gopogh. Run 'go install github.com/medyagh/gopogh/cmd/gopogh@v0.29.0': %v", err)
}
f, err := os.OpenFile("gopogh_filldb_log.txt", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
if err != nil {
Expand Down
Loading