From 59e05772a1b75d843e9099e6886fd45dd0c9e1d1 Mon Sep 17 00:00:00 2001 From: Christopher De Vries Date: Sun, 26 Nov 2023 12:56:31 -0500 Subject: [PATCH] run utils test before day tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9284b74..532c5ae 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,8 @@ runall: main.go run.go ## Run all days $(GO) run . -a test: ## Run all tests - $(GO) test -cover ./day* $(GO) test -cover ./utils + $(GO) test -cover ./day* aoc_run: main.go run.go $(GO) build -o aoc_run .