Skip to content

Commit

Permalink
feat: enable applications specific testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Azhovan committed Oct 14, 2023
1 parent d7d7043 commit 414834d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apptests/kustomize/kustomize_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ metadata:
namespace: test
`

assert.Equal(t, output, expected)
assert.Equal(t, string(output), expected)
}
3 changes: 2 additions & 1 deletion make/go.mk
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.PHONY: go-test
go-test: go-lint
go-test: install-tool.golang
cd hack/release && go test -v -race -covermode=atomic -coverprofile=coverage.out ./...
cd apptests && go test -v -race -covermode=atomic -coverprofile=coverage.out ./...
cd ../hack/release && go test -v -race -covermode=atomic -coverprofile=coverage.out ./...

.PHONY: mod-tidy
mod-tidy: install-tool.golang
Expand Down

0 comments on commit 414834d

Please sign in to comment.