From 21689afbc5f717274cd608358ffca3bdacb38f69 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Thu, 7 Jan 2021 13:29:07 +0300 Subject: Fix compatibility issues, add tests to the CI --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9b9a86aa..665c2143 100755 --- a/Makefile +++ b/Makefile @@ -24,8 +24,8 @@ uninstall: ## Uninstall locally installed RR rm -f /usr/local/bin/rr test: ## Run application tests - #go clean -testcache - docker-compose -f docker-compose.yaml up -d + go clean -testcache + docker-compose -f tests/docker-compose.yaml up -d go test -v -race -cover -tags=debug -covermode=atomic ./utils go test -v -race -cover -tags=debug -covermode=atomic ./pkg/pipe go test -v -race -cover -tags=debug -covermode=atomic ./pkg/pool @@ -47,7 +47,11 @@ test: ## Run application tests go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/static go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/boltdb go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/memory - docker-compose down + go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/memcached + go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/kv/boltdb + go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/kv/memory + go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/kv/memcached + docker-compose -f tests/docker-compose.yaml down lint: ## Run application linters golangci-lint run @@ -59,4 +63,4 @@ kv: go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/kv/boltdb go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/kv/memory go test -v -race -cover -tags=debug -covermode=atomic ./tests/plugins/kv/memcached - docker-compose down + docker-compose -f tests/docker-compose.yaml down -- cgit v1.2.3