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 9496246 commit 10e2468Copy full SHA for 10e2468
Makefile
@@ -1,6 +1,8 @@
1
NO_COLOR=\033[0m
2
OK_COLOR=\033[32;01m
3
4
+PKG_SRC := github.com/hellofresh/goengine
5
+
6
vet:
7
@echo "$(OK_COLOR)==> checking code correctness with 'go vet' tool$(NO_COLOR)"
8
@go vet ./...
@@ -11,7 +13,7 @@ lint: tools.golint
11
13
12
14
test-integration: lint vet
15
@echo "$(OK_COLOR)==> Running integration tests$(NO_COLOR)"
- @STORAGE_DSN=mongodb://localhost:27017/ BROKER_DSN=amqp://guest:guest@localhost:5672/ go run ./cmd/goengine/...
16
+ @STORAGE_DSN=mongodb://localhost:27017/ BROKER_DSN=amqp://guest:guest@localhost:5672/ go run $(PKG_SRC)/cmd/goengine/...
17
18
test-unit: lint vet
19
@echo "$(OK_COLOR)==> Running unit tests$(NO_COLOR)"
0 commit comments