From d307b13fe8620e78f782ee77152c16e737407e18 Mon Sep 17 00:00:00 2001 From: Ian Costanzo Date: Tue, 7 Sep 2021 16:55:30 -0700 Subject: [PATCH] Run integration tests using external ledger and tails server Signed-off-by: Ian Costanzo --- actions/run-integration-tests/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/actions/run-integration-tests/action.yml b/actions/run-integration-tests/action.yml index 15912dda9a..cd64509d02 100644 --- a/actions/run-integration-tests/action.yml +++ b/actions/run-integration-tests/action.yml @@ -6,11 +6,11 @@ inputs: description: "Set of flags that defines the test scope" required: false default: "-t @GHA" - LEDGER_URL: + IN_LEDGER_URL: description: "URL to the von network ledger browser" required: false default: "http://test.bcovrin.vonx.io" - PUBLIC_TAILS_URL: + IN_PUBLIC_TAILS_URL: description: "URL to the tails server" required: false default: "https://tails.vonx.io" @@ -20,7 +20,7 @@ runs: - name: run-integration-tests-acapy # to run with external ledger and tails server run as follows (and remove the ledger and tails actions from the workflow): # run: LEDGER_URL=http://test.bcovrin.vonx.io PUBLIC_TAILS_URL=https://tails.vonx.io ./run_bdd ${{ inputs.TEST_SCOPE }} - run: LEDGER_URL=${{ inputs.LEDGER_URL }} PUBLIC_TAILS_URL=${{ PUBLIC_TAILS_URL }} ./run_bdd ${{ inputs.TEST_SCOPE }} + run: LEDGER_URL=${{inputs.IN_LEDGER_URL}} PUBLIC_TAILS_URL=${{inputs.IN_PUBLIC_TAILS_URL}} ./run_bdd ${{ inputs.TEST_SCOPE }} shell: bash env: NO_TTY: "1"