Skip to content

Commit f6c4cb3

Browse files
author
Aaron Schlesinger
committed
fix(Makefile): test everything with one command
now that we don’t have multiple ‘main’ packages, we can comprehensively test everything with one command
1 parent 45dff0c commit f6c4cb3

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,7 @@ build:
4545
@$(call check-static-binary,$(BINARY_DEST_DIR)/boot)
4646

4747
test:
48-
${DEV_ENV_CMD} go test ./pkg && \
49-
${DEV_ENV_CMD} go test ./pkg/confd && \
50-
${DEV_ENV_CMD} go test ./pkg/env && \
51-
${DEV_ENV_CMD} go test ./pkg/etcd && \
52-
${DEV_ENV_CMD} go test ./pkg/git && \
53-
${DEV_ENV_CMD} go test ./pkg/sshd
48+
${DEV_ENV_CMD} go test `glide nv`
5449

5550
docker-build:
5651
docker build --rm -t ${IMAGE} rootfs

0 commit comments

Comments
 (0)