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 d389f10 commit 28c63abCopy full SHA for 28c63ab
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