Skip to content

Fix bugs during GUI testing #69

Fix bugs during GUI testing

Fix bugs during GUI testing #69

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/setup.cfg'
# This is needed for compiling wxwidgets
- name: Install gtk3
run: |
sudo apt install libgtk-3-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install .[dev]
- name: Test with pytest
run: |
pytest --cov=objdictgen --cov-report=xml -p no:logging --tb=no
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: Laerdal/python-objdictgen