From 8ad7bc8cdba0d882c13be6e47bc3bb4a2768ea3b Mon Sep 17 00:00:00 2001 From: Christian Grigis Date: Fri, 29 Nov 2019 16:22:18 +0100 Subject: [PATCH] Remove -race flag from test_local target --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 67c59891..3f5ce231 100644 --- a/Makefile +++ b/Makefile @@ -27,10 +27,10 @@ test_lint: } test_local: - go test -v -race -short -p=1 ./... -timeout=0 + go test -v -short -p=1 ./... -timeout=0 go run ./examples/bfv/examples_bfv.go go run ./examples/ckks/examples_ckks.go test: test_fmt test_local -local: test_fmt test_lint test_local \ No newline at end of file +local: test_fmt test_lint test_local