From 3abd2d2235dcfdff50369f0da5e63b86afa34ed3 Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Wed, 26 Feb 2025 11:30:29 -0300 Subject: [PATCH] make: add targets unit-race and unit-postgres-race --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 552ce0c5..25febbb5 100644 --- a/Makefile +++ b/Makefile @@ -95,14 +95,22 @@ clean: # TESTING # ======= -unit: +unit: @$(call print, "Running unit tests.") $(UNIT) +unit-race: + @$(call print, "Running unit race tests.") + $(UNIT) -race + unit-postgres: @$(call print, "Running unit tests with postgres.") $(UNIT) -tags=test_db_postgres +unit-postgres-race: + @$(call print, "Running unit race tests with postgres.") + $(UNIT) -race -tags=test_db_postgres + # ========= # UTILITIES # =========