diff options
author | Valery Piashchynski <[email protected]> | 2020-12-26 00:40:31 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-26 00:40:31 +0300 |
commit | 7a0dee1a416705c621edbf50e1f43fb39845348f (patch) | |
tree | 0007a6b8c8ac9e7d31b8a5f3f7f27669c860d261 /Makefile | |
parent | 8526c03822e724bc2ebb64b6197085fea335b782 (diff) |
Huge tests refactoring. Reduce running time 2-3x times
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 ./... |