summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-12-26 00:40:31 +0300
committerValery Piashchynski <[email protected]>2020-12-26 00:40:31 +0300
commit7a0dee1a416705c621edbf50e1f43fb39845348f (patch)
tree0007a6b8c8ac9e7d31b8a5f3f7f27669c860d261 /Makefile
parent8526c03822e724bc2ebb64b6197085fea335b782 (diff)
Huge tests refactoring. Reduce running time 2-3x times
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9f8323a5..01f7d205 100755
--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,18 @@ test: ## Run application tests
go test -v -race -cover -tags=debug -covermode=atomic ./pkg/worker
go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/http
go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/informer
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/reload
go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/server
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/checker
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/config
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/gzip
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/headers
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/logger
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/metrics
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/redis
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/resetter
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/rpc
+ go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/static
lint: ## Run application linters
go fmt ./...