From 3e00850c8d9fdb76a99f901b357e48014ac62527 Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Tue, 17 Jun 2025 22:26:28 +0200 Subject: [PATCH] makefile: remove test integration Signed-off-by: Kristoffer Dalby --- Makefile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Makefile b/Makefile index 25fa1c67..7fff2724 100644 --- a/Makefile +++ b/Makefile @@ -24,17 +24,6 @@ dev: lint test build test: gotestsum -- -short -race -coverprofile=coverage.out ./... -test_integration: - docker run \ - -t --rm \ - -v ~/.cache/hs-integration-go:/go \ - --name headscale-test-suite \ - -v $$PWD:$$PWD -w $$PWD/integration \ - -v /var/run/docker.sock:/var/run/docker.sock \ - -v $$PWD/control_logs:/tmp/control \ - golang:1 \ - go run gotest.tools/gotestsum@latest -- -race -failfast ./... -timeout 120m -parallel 8 - lint: golangci-lint run --fix --timeout 10m