summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-01-05 17:37:17 +0300
committerValery Piashchynski <[email protected]>2021-01-05 17:37:17 +0300
commit13b01ccaba1eedeb99d37842ec8f2019d2625187 (patch)
treec645c240336666fa63d70ed2703a78df828c597f /Makefile
parent877b0ed461c7d5e1de87b7561f414aeb236cf3ec (diff)
Finish implementation of the KV
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 87999417..87f9f1a7 100755
--- a/Makefile
+++ b/Makefile
@@ -44,6 +44,10 @@ test: ## Run application tests
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
+ go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/boltdb
+ go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/memory
lint: ## Run application linters
golangci-lint run
+kv:
+ go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/boltdb