We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 469df26 commit 566d6afCopy full SHA for 566d6af
1 file changed
Makefile
@@ -27,6 +27,7 @@ RC := manifests/deis-${SHORT_NAME}-rc.yaml
27
SVC := manifests/deis-${SHORT_NAME}-service.yaml
28
IMAGE := ${DEIS_REGISTRY}${IMAGE_PREFIX}/${SHORT_NAME}:${VERSION}
29
30
+TEST_PACKAGES := $(shell ${DEV_ENV_CMD} glide nv)
31
32
all:
33
@echo "Use a Makefile to control top-level building of the project."
@@ -45,7 +46,7 @@ build:
45
46
@$(call check-static-binary,$(BINARY_DEST_DIR)/boot)
47
48
test:
- ${DEV_ENV_CMD} go test `glide nv`
49
+ ${DEV_ENV_CMD} go test ${TEST_PACKAGES}
50
51
docker-build:
52
docker build --rm -t ${IMAGE} rootfs
0 commit comments