Skip to content

Commit

Permalink
Fixing env var usage in makfile
Browse files Browse the repository at this point in the history
  • Loading branch information
willvedd committed Nov 29, 2022
1 parent a418416 commit 9f83e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ test-unit: ## Run unit tests
test-integration: $(GO_BIN)/commander ## Run integration tests. To run a specific test pass the FILTER var. Usage: `make test-integration FILTER="attack protection"`
${call print, "Running integration tests"}
@$(MAKE) install # ensure fresh install prior to running test
auth0 tenants add $\AUTH0_CLI_CLIENT_DOMAIN --client-id $\AUTH0_CLI_CLIENT_ID --client-secret $\AUTH0_CLI_CLIENT_SECRET && commander test ./test/integration/test-cases.yaml --filter "$(FILTER)"; \
auth0 tenants add ${AUTH0_CLI_CLIENT_DOMAIN} --client-id ${AUTH0_CLI_CLIENT_ID} --client-secret ${AUTH0_CLI_CLIENT_SECRET} && commander test ./test/integration/test-cases.yaml --filter "$(FILTER)"; \
exit_code=$$?; \
bash ./test/integration/scripts/test-cleanup.sh; \
exit $$exit_code
Expand Down

0 comments on commit 9f83e3d

Please sign in to comment.