Skip to content

Update CI 1.26 (#856) #714

Update CI 1.26 (#856)

Update CI 1.26 (#856) #714

Workflow file for this run

name: Platform Python Tests
on:
push:
branches:
- main-platform1
- stable**
pull_request:
branches:
- main-platform1
- stable**
workflow_dispatch:
jobs:
unittest:
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'