[QA] Automatic vizro ai score tests #1616
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: Vizro QA tests trigger | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
PYTHONUNBUFFERED: 1 | |
FORCE_COLOR: 1 | |
jobs: | |
vizro-qa-test-trigger-fork: | |
if: ${{ github.event.pull_request.head.repo.fork }} | |
name: Vizro QA ${{ matrix.label }} trigger | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- label: integration tests | |
- label: vizro-ai ui tests | |
- label: component library tests | |
steps: | |
- name: Passed fork step | |
run: echo "Success!" | |
vizro-qa-tests-trigger: | |
if: ${{ ! github.event.pull_request.head.repo.fork }} | |
name: Vizro QA ${{ matrix.label }} trigger | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- label: integration tests | |
- label: vizro-ai ui tests | |
- label: component library tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Tests trigger | |
run: | | |
export INPUT_OWNER=mckinsey | |
export INPUT_REPO=vizro-qa | |
if [ "${{ matrix.label }}" == "integration tests" ]; then | |
export INPUT_WORKFLOW_FILE_NAME=${{ secrets.VIZRO_QA_INTEGRATION_TESTS_WORKFLOW }} | |
elif [ "${{ matrix.label }}" == "vizro-ai ui tests" ]; then | |
export INPUT_WORKFLOW_FILE_NAME=${{ secrets.VIZRO_QA_VIZRO_AI_UI_TESTS_WORKFLOW }} | |
elif [ "${{ matrix.label }}" == "component library tests" ]; then | |
export INPUT_WORKFLOW_FILE_NAME=${{ secrets.VIZRO_QA_VIZRO_COMPONENT_LIBRARY_TESTS_WORKFLOW }} | |
fi | |
export INPUT_GITHUB_TOKEN=${{ secrets.VIZRO_SVC_PAT }} | |
export INPUT_REF=main # because we should send existent branch to dispatch workflow | |
export INPUT_CLIENT_PAYLOAD='{"branch": "${{ github.head_ref }}"}' | |
tools/trigger-workflow-and-wait.sh |