test-harness-acapy-acapy #1064
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-harness-acapy-acapy | |
# RUNSET_NAME: "ACA-PY to ACA-Py" | |
# Scope: AIP 1.0 | |
# Exceptions: None | |
# SKIP | |
# | |
# Summary | |
# | |
# This runset uses the current main branch of ACA-Py for all of the agents. The runset runs all of the tests in the suite | |
# that are expected to pass given the current state of ACA-Py support for AIP 1 and 2. | |
# | |
# Current | |
# | |
# All of the tests being executed in this runset are passing. | |
# | |
# *Status Note Updated: 2021.03.18* | |
# | |
# End | |
on: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
LEDGER_URL_CONFIG: "http://localhost:9000" | |
TAILS_SERVER_URL_CONFIG: "http://localhost:6543" | |
steps: | |
- name: checkout-test-harness | |
uses: actions/checkout@v4 | |
with: | |
path: test-harness | |
- name: run-von-network | |
uses: ./test-harness/actions/run-von-network | |
- name: run-indy-tails-server | |
uses: ./test-harness/actions/run-indy-tails-server | |
- name: run-test-harness-wo-reports | |
uses: ./test-harness/actions/run-test-harness-wo-reports | |
with: | |
BUILD_AGENTS: "-a acapy-main" | |
TEST_AGENTS: "-d acapy-main" | |
TEST_SCOPE: "-t @AcceptanceTest -t ~@wip -t ~@T004-RFC0211 -t ~@DidMethod_orb -t ~@Transport_NoHttpOutbound" | |
REPORT_PROJECT: acapy | |
- name: run-send-gen-test-results-secure | |
if: ${{ always() }} | |
uses: ./test-harness/actions/run-send-gen-test-results-secure | |
with: | |
REPORT_PROJECT: acapy | |
ADMIN_USER: ${{ secrets.AllureAdminUser }} | |
ADMIN_PW: ${{ secrets.AllureAdminPW }} |