From 688ea63d5511f04e8f13a73a80e5b0a51c09f4d8 Mon Sep 17 00:00:00 2001 From: gmega Date: Fri, 6 Dec 2024 18:48:43 -0300 Subject: [PATCH] fix phony targets --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 537c5e1..834b9b5 100644 --- a/Makefile +++ b/Makefile @@ -2,13 +2,13 @@ SHELL := bash .SHELLFLAGS := -eu -o pipefail -c -.PHONY: test-unit-local \ - start-local-integration-harness \ - stop-local-integration-harness \ - test-integration-local \ - test-all-local \ - test-unit-docker \ - test-integration-docker \ +.PHONY: unit \ + harness-start \ + harness-stop \ + integration \ + tests \ + unit-docker \ + integration-docker \ clean # Runs the unit tests locally.