summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-06-15 14:43:51 +0300
committerValery Piashchynski <[email protected]>2021-06-15 14:43:51 +0300
commit9dc98d43b0c0de3e1e1bd8fdc97c122c7c7c594f (patch)
treec7c61f55e975e5d5ea533292abce07b0b7f15503 /Makefile
parente30bc57f13023c15775925b7cc3b3fcbb9f2b55c (diff)
Add Go 1.17beta1 tests to the Makefile
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 431cb017..15f9e394 100755
--- a/Makefile
+++ b/Makefile
@@ -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