Happy path on demand tests #61
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: Happy path on demand tests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 4 * * 1,4' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 60 | |
name: Cypress Happy path on demand tests | |
strategy: | |
fail-fast: false | |
matrix: | |
containers: [1, 2, 3] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/cypress | |
with: | |
secrets: ${{ toJSON(secrets) }} | |
spec: | | |
cypress/e2e/happypath/*.cy.js | |
group: 'Happy path on demand tests' | |
tag: 'happypath' | |
- name: Python setup | |
if: always() | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install junitparser | |
if: always() | |
run: | | |
pip install junitparser | |
- name: Merge JUnit reports for TestRail | |
if: always() | |
run: | | |
junitparser merge --suite-name "Root Suite" --glob "reports/junit-*" "reports/junit-report.xml" | |
- name: TestRail CLI upload results | |
if: always() | |
run: | | |
pip install trcli | |
trcli -y \ | |
-h https://gno.testrail.io/ \ | |
--project "Safe- Web App" \ | |
--username ${{ secrets.TESTRAIL_USERNAME }} \ | |
--password ${{ secrets.TESTRAIL_PASSWORD }} \ | |
parse_junit \ | |
--title "Happy path Tests, branch: ${GITHUB_REF_NAME}" \ | |
--run-description ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \ | |
-f "reports/junit-report.xml" |