. cannot use to test session name #20
Workflow file for this run
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: record-build-and-test-results-action | |
on: | |
push: | |
branches: | |
- main | |
- github-test-result-action # for debug | |
paths: | |
- "launchable-test-result//**" | |
- ".github/workflows/record-build-and-test-results-action.yml" # for debug | |
pull_request: | |
branches: | |
- main | |
- github-test-result-action # for debug | |
paths: | |
- "launchable-test-result//**" | |
- ".github/workflows/record-build-and-test-results-action.yml" # for debug | |
env: | |
LAUNCHABLE_TOKEN: ${{ secrets.LAUNCHABLE_TOKEN_PYTEST }} | |
LAUNCHABLE_DEBUG: 1 | |
LAUNCHABLE_REPORT_ERROR: 1 | |
jobs: | |
basic-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Record build and test results action | |
uses: launchableinc/record-build-and-test-results-action@support-flavor-and-test-session-name-options | |
with: | |
report_path: launchable-test-result/test-results.xml | |
test_runner: pytest | |
if: always() | |
- name: Record build and test results action with no build | |
uses: launchableinc/record-build-and-test-results-action@support-flavor-and-test-session-name-options | |
with: | |
report_path: launchable-test-result/test-results.xml | |
test_runner: pytest | |
no_build: true | |
if: always() | |
custom-values: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Record build and test results action with test_session_name option | |
uses: launchableinc/record-build-and-test-results-action@support-flavor-and-test-session-name-options | |
with: | |
report_path: launchable-test-result/test-results.xml | |
test_runner: pytest | |
test_session_name: ${{ github.run_id }} | |
if: always() | |
- name: Record build and test results action with test_session_name option part 2 | |
uses: launchableinc/record-build-and-test-results-action@support-flavor-and-test-session-name-options | |
with: | |
report_path: launchable-test-result/test-results.xml | |
test_runner: pytest | |
test_session_name: ${{ github.run_id }} | |
if: always() | |
- name: Record build and test results action with custom build name | |
uses: launchableinc/record-build-and-test-results-action@support-flavor-and-test-session-name-options | |
with: | |
report_path: launchable-test-result/test-results.xml | |
test_runner: pytest | |
build_name: ${{ github.run_id }}-${{ github.job }} | |
advanced-cases: | |
strategy: | |
matrix: | |
python_version: ['3.12', '3.11', '3.10'] | |
os: ['ubuntu-latest', 'windows-latest'] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Replace python version's dot to hyphen | |
run: | | |
python_version=$(echo "${{ matrix.python_version }}" | sed 's/\./-/g') | |
echo "python_version=$python_version" >> $GITHUB_ENV | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Record build and test results action with custom build name and test_session_name option with flavor | |
uses: launchableinc/record-build-and-test-results-action@support-flavor-and-test-session-name-options | |
with: | |
report_path: launchable-test-result/test-results.xml | |
test_runner: pytest | |
build_name: ${{ github.run_id }}-${{ github.job }} | |
test_session_name: ${{ github.run_id }}-${{ github.job }}-${{ matrix.os }}-${{ env.python_version }}-1 | |
flavors: 'build_name=true, test_session_name=true, flavors=true, count=1, python_version=${{ matrix.python_version }}, os=${{ matrix.os }}' | |
if: always() | |
- name: Record build and test results action with custom build name and test_session_name option with flavor part 2 | |
uses: launchableinc/record-build-and-test-results-action@support-flavor-and-test-session-name-options | |
with: | |
report_path: launchable-test-result/test-results.xml | |
test_runner: pytest | |
build_name: ${{ github.run_id }}-${{ github.job }} | |
test_session_name: ${{ github.run_id }}-${{ github.job }}-${{ matrix.os }}-${{ env.python_version }}-2 | |
flavors: 'build_name=true, test_session_name=true, flavors=true, count=2, python_version=${{ matrix.python_version }}, os=${{ matrix.os }}' | |
if: always() |