From 997b7710b8a8ab2b507ec242742cf57fbf6fae9b Mon Sep 17 00:00:00 2001 From: David Allen Date: Thu, 12 Sep 2024 12:13:59 -0600 Subject: [PATCH] Changed test rule in Makefile to use specific tests --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3285e00..da3913a 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,9 @@ lint: ## golangci-lint .PHONY: test test: ## go test $(call print-target) - go test -race -covermode=atomic -coverprofile=coverage.out -coverpkg=./... ./... + ./emulator/setup.sh & + sleep 10 + go test -race -covermode=atomic -coverprofile=coverage.out -coverpkg=./... tests/api_test.go tests/compatibility_test.go go tool cover -html=coverage.out -o coverage.html .PHONY: diff