-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #2122: bdd changes for v2 Signed-off-by: sbadla1 <[email protected]> * #2122: added makefile for test-bdd module Signed-off-by: sbadla1 <[email protected]> * #2122: added makefile for test-bdd module Signed-off-by: sbadla1 <[email protected]> * #2122: update rolling-update template Signed-off-by: sbadla1 <[email protected]> * #2122: bdd changes for v2 Signed-off-by: sbadla1 <[email protected]> * #2122: bdd changes for v2 Signed-off-by: sbadla1 <[email protected]>
- Loading branch information
1 parent
3841cc7
commit 998de0d
Showing
4 changed files
with
32 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
test: fmt vet | ||
go test ./... -coverprofile coverage.txt | ||
go tool cover -html=./coverage.txt -o cover.html | ||
|
||
|
||
# Run go fmt against code | ||
fmt: | ||
go fmt ./... | ||
|
||
# Run go vet against code | ||
vet: | ||
go vet ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters