Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 1ae68f8

Browse files
author
AmitKumarDas
committed
chore(refactor): make common & dynamic packages readable
Signed-off-by: AmitKumarDas <amit.das@mayadata.io>
1 parent 4f25d0d commit 1ae68f8

File tree

23 files changed

+527
-468
lines changed

23 files changed

+527
-468
lines changed

Makefile

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ push: image
8080

8181
.PHONY: unit-test
8282
unit-test: generated_files
83-
@go test -mod=vendor -i ${PKGS}
84-
@go test -mod=vendor ${PKGS}
83+
@go test -cover -mod=vendor -i ${PKGS}
84+
@go test -cover -mod=vendor ${PKGS}
8585

8686
.PHONY: integration-dependencies
8787
integration-dependencies: manifests
@@ -92,15 +92,18 @@ integration-dependencies: manifests
9292
# This can be run on one's laptop or Travis like CI environments.
9393
.PHONY: integration-test
9494
integration-test: integration-dependencies
95-
@go test -mod=vendor ./test/integration/... -v -short -timeout 5m \
96-
-args --logtostderr -v=1
95+
@go test -mod=vendor \
96+
./test/integration/... \
97+
-v -short -timeout 5m -args --logtostderr -v=1
9798

9899
.PHONY: integration-test-gctl
99100
integration-test-gctl: integration-dependencies
100-
@go test -mod=vendor ./test/integration/generic/... -v -timeout 5m \
101-
-args --logtostderr -v=1
101+
@go test -mod=vendor \
102+
./test/integration/generic/... \
103+
-v -timeout 5m -args --logtostderr -v=1
102104

103105
.PHONY: integration-test-local-gctl
104106
integration-test-local-gctl: integration-dependencies
105-
@go test -mod=vendor ./test/integration/genericlocal/... -v -timeout 5m \
106-
-args --logtostderr -v=1
107+
@go test -mod=vendor \
108+
./test/integration/genericlocal/... \
109+
-v -timeout 5m -args --logtostderr -v=1

0 commit comments

Comments
 (0)