Skip to content

Commit 15eb009

Browse files
authored
Merge pull request #3282 from jamshale/fix-interop-test-after-update
Update interop fork location after AATH update
2 parents 7d6f6b2 + eee0cf6 commit 15eb009

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/bdd-interop-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,26 +61,26 @@ jobs:
6161
if: steps.check-if-src-changed.outputs.run_tests != 'false'
6262
run: |
6363
# Get AATH
64-
git clone https://github.com/hyperledger/aries-agent-test-harness.git
64+
git clone https://github.com/openwallet-foundation/owl-agent-test-harness.git
6565
6666
# Change fork and branch for pull requests
6767
if [ ${{ github.event_name }} == 'pull_request' ]; then
6868
echo ${{ fromJson(steps.get_pr_data.outputs.data).head.repo.html_url }}
6969
echo ${{ fromJson(steps.get_pr_data.outputs.data).head.ref }}
70-
sed -i 's|aries-cloudagent\[indy, bbs, askar\]@git+https://github.com/hyperledger/aries-cloudagent-python@main|acapy-agent[indy, bbs, askar]@git+${{ fromJson(steps.get_pr_data.outputs.data).head.repo.html_url }}@${{ fromJson(steps.get_pr_data.outputs.data).head.ref }}|g' ./aries-agent-test-harness/aries-backchannels/acapy/requirements-main.txt
70+
sed -i 's|@git+https://github.com/openwallet-foundation/acapy@main|@git+${{ fromJson(steps.get_pr_data.outputs.data).head.repo.html_url }}@${{ fromJson(steps.get_pr_data.outputs.data).head.ref }}|g' ./owl-agent-test-harness/aries-backchannels/acapy/requirements-main.txt
7171
fi
72-
cat aries-agent-test-harness/aries-backchannels/acapy/requirements-main.txt
72+
cat owl-agent-test-harness/aries-backchannels/acapy/requirements-main.txt
7373
74-
cd aries-agent-test-harness
74+
cd owl-agent-test-harness
7575
./manage build -a acapy-main
7676
- name: Run PR Interop Tests
7777
if: (steps.check_if_release.outputs.is_release != 'true' && github.event_name == 'pull_request' && steps.check-if-src-changed.outputs.run_tests != 'false')
7878
run: |
79-
cd aries-agent-test-harness
79+
cd owl-agent-test-harness
8080
NO_TTY=1 LEDGER_URL_CONFIG=http://test.bcovrin.vonx.io TAILS_SERVER_URL_CONFIG=https://tails.vonx.io ./manage run -d acapy-main -t @critical -t ~@wip -t ~@T004-RFC0211 -t ~@DidMethod_orb -t ~@Transport_NoHttpOutbound
8181
- name: Run Release or Nightly Interop Tests
8282
if: (steps.check_if_release.outputs.is_release == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' && steps.check-if-src-changed.outputs.run_tests != 'false')
8383
run: |
84-
cd aries-agent-test-harness
84+
cd owl-agent-test-harness
8585
NO_TTY=1 LEDGER_URL_CONFIG=http://test.bcovrin.vonx.io TAILS_SERVER_URL_CONFIG=https://tails.vonx.io ./manage run -d acapy-main -t @AcceptanceTest -t ~@wip -t ~@T004-RFC0211 -t ~@DidMethod_orb -t ~@Transport_NoHttpOutbound
8686

0 commit comments

Comments
 (0)