Skip to content

Commit

Permalink
Helm unit tests (#6895)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdabelf5 authored and web-flow committed Dec 3, 2024
1 parent f0ee954 commit ef1835b
Show file tree
Hide file tree
Showing 14 changed files with 4,666 additions and 8 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ repos:
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: check-executables-have-shebangs
exclude: '(\.snap)$'
- id: check-symlinks
- id: check-case-conflict
- id: check-vcs-permalinks
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ staticcheck: ## Run staticcheck linter

.PHONY: test
test: ## Run GoLang tests
go test -tags=aws -shuffle=on -race -coverprofile=coverage.txt -covermode=atomic ./...
go test -tags=aws,helmunit -shuffle=on -race -coverprofile=coverage.txt -covermode=atomic ./...

.PHONY: test-update-snaps
test-update-snaps:
UPDATE_SNAPS=true go test -tags=aws -shuffle=on -race ./...
UPDATE_SNAPS=true go test -tags=aws,helmunit -shuffle=on -race ./...

cover: test ## Generate coverage report

Expand Down
Loading

0 comments on commit ef1835b

Please sign in to comment.