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 783f59d commit a1a1027Copy full SHA for a1a1027
tests/bats/Makefile
@@ -44,7 +44,7 @@ image:
44
.PHONY: tests
45
tests: image
46
@mkdir -p tests-out && \
47
- export _RUNDIR=$$(shell mktemp -p tests-out -d -t bats-tests-$$(date +%s)-XXXXX) && \
+ export _RUNDIR=$$(mktemp -p tests-out -d -t bats-tests-$$(date +%s)-XXXXX) && \
48
docker run \
49
--rm \
50
-v /tmp:/tmp \
@@ -60,7 +60,7 @@ tests: image
60
-u $(shell id -u ${USER}):$(shell id -g ${USER}) \
61
--entrypoint "/bin/bash"\
62
$(BATS_IMAGE) \
63
- -c "cd /cwd; \
+ -c "set -x; cd /cwd; \
64
echo "kubeconfig head:"; cat /kubeconfig | head -n2; \
65
echo 'kubectl get nodes' || exit 1; \
66
echo 'Running k8s cluster cleanup (invasive)... '; \
0 commit comments