diff options
author | Valery Piashchynski <[email protected]> | 2021-06-15 14:43:51 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-15 14:43:51 +0300 |
commit | 9dc98d43b0c0de3e1e1bd8fdc97c122c7c7c594f (patch) | |
tree | c7c61f55e975e5d5ea533292abce07b0b7f15503 /Makefile | |
parent | e30bc57f13023c15775925b7cc3b3fcbb9f2b55c (diff) |
Add Go 1.17beta1 tests to the Makefile
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -62,3 +62,31 @@ test: ## Run application tests go test -v -race -tags=debug ./tests/plugins/kv go test -v -race -tags=debug ./tests/plugins/websockets docker-compose -f tests/docker-compose.yaml down + +testGo1.17beta1: ## Run application tests + docker-compose -f tests/docker-compose.yaml up -d + go1.17beta1 test -v -race -tags=debug ./pkg/transport/pipe + go1.17beta1 test -v -race -tags=debug ./pkg/transport/socket + go1.17beta1 test -v -race -tags=debug ./pkg/pool + go1.17beta1 test -v -race -tags=debug ./pkg/worker + go1.17beta1 test -v -race -tags=debug ./pkg/worker_watcher + go1.17beta1 test -v -race -tags=debug ./pkg/bst + go1.17beta1 test -v -race -tags=debug ./tests/plugins/http + go1.17beta1 test -v -race -tags=debug ./plugins/http/config + go1.17beta1 test -v -race -tags=debug ./plugins/server + go1.17beta1 test -v -race -tags=debug ./tests/plugins/informer + go1.17beta1 test -v -race -tags=debug ./tests/plugins/reload + go1.17beta1 test -v -race -tags=debug ./tests/plugins/server + go1.17beta1 test -v -race -tags=debug ./tests/plugins/service + go1.17beta1 test -v -race -tags=debug ./tests/plugins/status + go1.17beta1 test -v -race -tags=debug ./tests/plugins/config + go1.17beta1 test -v -race -tags=debug ./tests/plugins/gzip + go1.17beta1 test -v -race -tags=debug ./tests/plugins/headers + go1.17beta1 test -v -race -tags=debug ./tests/plugins/logger + go1.17beta1 test -v -race -tags=debug ./tests/plugins/metrics + go1.17beta1 test -v -race -tags=debug ./tests/plugins/redis + go1.17beta1 test -v -race -tags=debug ./tests/plugins/resetter + go1.17beta1 test -v -race -tags=debug ./tests/plugins/rpc + go1.17beta1 test -v -race -tags=debug ./tests/plugins/kv + go1.17beta1 test -v -race -tags=debug ./tests/plugins/websockets + docker-compose -f tests/docker-compose.yaml down |