From 939f66a11b1fe76e154b1cc490c81a27af9457b4 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 24 Jun 2024 15:59:59 +0200 Subject: [PATCH] Update Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index db3a2462..7e43aa2e 100644 --- a/Makefile +++ b/Makefile @@ -17,9 +17,9 @@ fmt: .PHONY: test test: - GO111MODULE=off go get github.com/onsi/ginkgo/v2 + go get github.com/onsi/ginkgo/v2 go install github.com/onsi/ginkgo/v2/ginkgo - GO111MODULE=off go get github.com/onsi/gomega/... + go get github.com/onsi/gomega/... ginkgo -r --flake-attempts=3 ./... .PHONY: test-integration