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 fa44f2f commit 82d8cdeCopy full SHA for 82d8cde
Makefile
@@ -147,7 +147,6 @@ test: ## Run go unit tests.
147
.PHONY: lua-test
148
lua-test: ## Run lua unit tests.
149
@build/run-in-docker.sh \
150
- BUSTED_ARGS=$(BUSTED_ARGS) \
151
MAC_OS=$(MAC_OS) \
152
test/test-lua.sh
153
test/test-lua.sh
@@ -41,7 +41,7 @@ SHDICT_ARGS=(
41
)
42
43
if [ $# -eq 0 ]; then
44
- resty "${SHDICT_ARGS[@]}" ./rootfs/etc/nginx/lua/test/ ./rootfs/etc/nginx/lua/plugins/**/test
+ resty "${SHDICT_ARGS[@]}" ./rootfs/etc/nginx/lua/test/ ./rootfs/etc/nginx/lua/plugins/**/test ${BUSTED_ARGS}
45
else
46
- resty "${SHDICT_ARGS[@]}" $@
+ resty "${SHDICT_ARGS[@]}" $@ ${BUSTED_ARGS}
47
fi
0 commit comments