Skip to content

Fix image testing - use stable branches #1084

Fix image testing - use stable branches

Fix image testing - use stable branches #1084

Workflow file for this run

name: Platform Python Tests
on:
push:
branches:
- main-platform1
- stable**
- release**
pull_request:
branches:
- main-platform1
- stable**
- release**
workflow_dispatch:
inputs:
ods_branch:
description: 'If set, pip install ods-tools branch [git ref]'
required: false
jobs:
ods_tools:
#if: inputs.ods_branch != ''
uses: OasisLMF/ODS_Tools/.github/workflows/build.yml@main
secrets: inherit
with:
ods_branch: ${{ inputs.ods_branch == '' && 'main' || inputs.ods_branch }}
unittest:
needs: ods_tools
env:
JUNIT_REPORT: pytest_report.xml
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install -r requirements.txt
- name: Download package
if: needs.ods_tools.outputs.whl_filename != ''
uses: actions/download-artifact@v3
with:
name: bin_package
path: ${{ github.workspace }}/
- name: Install package
if: needs.ods_tools.outputs.whl_filename != ''
run: |
pip uninstall ods-tools -y
pip install ${{ needs.ods_tools.outputs.whl_filename }}
- name: Run Pytest
run: pytest --cov-config=tox.ini --junitxml=${{ github.workspace }}/pytest_report.xml --cov=src --cov-report=xml --cov-report=term
- name: Generate Report
uses: dorny/test-reporter@v1
if: success() || failure() # run this step even if previous step failed
with:
name: Pytest Results # Name of the check run which will be created
path: ${{ env.JUNIT_REPORT }} # Path to test results
reporter: java-junit # Format of test results
fail-on-error: 'false'