From 2f169d3f7a4918391fd6da7e7fbff90cef731a56 Mon Sep 17 00:00:00 2001
From: gjahn <gregor.jahn@bht-berlin.de>
Date: Fri, 8 Dec 2023 00:33:11 +0100
Subject: [PATCH] make: clean test cache before running tests

THis change set aims to simulate running test as if they
would be executed in a pipeline
---
 Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile b/Makefile
index c5507ab..f43fbb3 100644
--- a/Makefile
+++ b/Makefile
@@ -50,6 +50,7 @@ build-linux: $(BIN_DIR)/artifact.bin
 .SILENT: test
 test:
 	cd $(SRC_DIR) \
+	&& go clean -testcache \
 	&& go test \
 		-race \
 		-v \
-- 
GitLab