We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc4a564 commit 3abd2d2Copy full SHA for 3abd2d2
Makefile
@@ -95,14 +95,22 @@ clean:
95
# TESTING
96
# =======
97
98
-unit:
+unit:
99
@$(call print, "Running unit tests.")
100
$(UNIT)
101
102
+unit-race:
103
+ @$(call print, "Running unit race tests.")
104
+ $(UNIT) -race
105
+
106
unit-postgres:
107
@$(call print, "Running unit tests with postgres.")
108
$(UNIT) -tags=test_db_postgres
109
110
+unit-postgres-race:
111
+ @$(call print, "Running unit race tests with postgres.")
112
+ $(UNIT) -race -tags=test_db_postgres
113
114
# =========
115
# UTILITIES
116
0 commit comments