Skip to content

14 update pytests to run under python 3.11.2 locally and in CI #148

14 update pytests to run under python 3.11.2 locally and in CI

14 update pytests to run under python 3.11.2 locally and in CI #148

Workflow file for this run

name: Unit test run
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11.2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements_pip.txt ]; then pip install -r requirements_pip.txt; fi
- name: Test with pytest
run: python -m coverage run --branch --source=onair -m pytest ./test/
- name: Coverage report
run: coverage report
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3