Skip to content

Commit

Permalink
Run integration tests using external ledger and tails server
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Costanzo <[email protected]>
  • Loading branch information
ianco committed Sep 7, 2021
1 parent a583b34 commit d307b13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actions/run-integration-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit d307b13

Please sign in to comment.