Skip to content

Commit

Permalink
Add make target to clean the go test cache (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcobebway authored Dec 6, 2023
1 parent d892cf6 commit cb1501f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ module-template.yaml
eventing-manager.yaml
module-config.yaml

.env.dev
**/.env
**/.env.dev
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -323,3 +323,8 @@ $(TABLE_GEN): $(LOCALBIN)
.PHONY: crd-docs-gen
crd-docs-gen: tablegen ## Generates CRD spec into docs folder
${TABLE_GEN} --crd-filename ./config/crd/bases/operator.kyma-project.io_eventings.yaml --md-filename ./docs/user/02-configuration.md

# clean-testcache cleans the go test cache.
.PHONY: clean-testcache
clean-testcache:
go clean -testcache

0 comments on commit cb1501f

Please sign in to comment.