Skip to content

Commit 5c49996

Browse files
committed
fix(Makefile): run all tests inside the dev container
1 parent 1a8fc34 commit 5c49996

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,12 @@ build:
5252
done
5353

5454
test:
55-
${DEV_ENV_CMD} go test ./pkg && go test ./pkg/confd && go test ./pkg/env && go test ./pkg/etcd && go test ./pkg/git && go test ./pkg/sshd
55+
${DEV_ENV_CMD} go test ./pkg && \
56+
${DEV_ENV_CMD} go test ./pkg/confd && \
57+
${DEV_ENV_CMD} go test ./pkg/env && \
58+
${DEV_ENV_CMD} go test ./pkg/etcd && \
59+
${DEV_ENV_CMD} go test ./pkg/git && \
60+
${DEV_ENV_CMD} go test ./pkg/sshd
5661

5762
docker-build:
5863
docker build --rm -t ${IMAGE} rootfs

0 commit comments

Comments
 (0)