Skip to content

Documentation change for #664: Documentation change for #663: Documentation change for #662: Documentation change for #661: Documentation change for #660: Documentation change for #659: Documentation change for #658: Documentation change for #657: Documentation change for #656: Documentation change for #655: Documentation change for #654: Documentation change for #653: Documentation change for #652: Documentation change for #651: Documentation change for #650: Documentation change for #649: Documentation change for #648: Documentation change for #647: Documentation change for #646: Documentation change for #645: Documentation change for #644: Documentation change for #643: Documentation change for #: #804

Documentation change for #664: Documentation change for #663: Documentation change for #662: Documentation change for #661: Documentation change for #660: Documentation change for #659: Documentation change for #658: Documentation change for #657: Documentation change for #656: Documentation change for #655: Documentation change for #654: Documentation change for #653: Documentation change for #652: Documentation change for #651: Documentation change for #650: Documentation change for #649: Documentation change for #648: Documentation change for #647: Documentation change for #646: Documentation change for #645: Documentation change for #644: Documentation change for #643: Documentation change for #:

Documentation change for #664: Documentation change for #663: Documentation change for #662: Documentation change for #661: Documentation change for #660: Documentation change for #659: Documentation change for #658: Documentation change for #657: Documentation change for #656: Documentation change for #655: Documentation change for #654: Documentation change for #653: Documentation change for #652: Documentation change for #651: Documentation change for #650: Documentation change for #649: Documentation change for #648: Documentation change for #647: Documentation change for #646: Documentation change for #645: Documentation change for #644: Documentation change for #643: Documentation change for #: #804

Workflow file for this run

name: python-tests
on:
pull_request:
push:
branches:
- main
- feature/*
concurrency:
group: '${{ github.workflow }}-${{ github.event_name }}-${{ inputs.platform }} @ ${{ github.event.pull_request.number || github.sha }}'
cancel-in-progress: true
permissions: {}
jobs:
python-test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.11']
fail-fast: false
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- name: Checkout
uses: kaidokert/[email protected]
with:
fetch-depth: 1
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Pip Packages
run: pip install --require-hashes --no-deps -r ${{ github.workspace }}/docker/pytest/requirements.txt
- name: Run Tests
run: coverage run -m pytest
- name: Coverage Report
run: coverage report -m