From e3983c2440dba50d93965d504953fe57ba0fc0b7 Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Thu, 29 Oct 2020 19:38:15 +0200 Subject: [PATCH] Run bats in `dind` container, add git & bash --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 558c415..2f27a3d 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ test: --rm \ -v $$(pwd):/workdir \ docker:dind \ - apk add bats && bats test.bats + sh -c "apk add bats git bash && cd /workdir && bats /workdir/test.bats" shellcheck: @docker run \