1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Unit Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
defaults:
run:
shell: bash
jobs:
build:
runs-on: ${{ matrix.os }}
env:
DISPLAY: ':99.0'
strategy:
fail-fast: false
matrix:
python-version: [ "3.10",
"3.11",
"3.12",
"3.13" ]
os: [ windows-latest ]
# , ubuntu-latest ]
#include:
#- os: ubuntu-latest
# path: ~/.cache/pip
#- os: macos-latest
# path: ~/Library/Caches/pip
#- os: windows-latest
# path: ~\AppData\Local\pip\Cache
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Set up testing
run: uv add flake8 pytest
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 finalcif --count --select=E9,F63,F7,F82 --show-source --statistics --ignore=E203,E127,E128,E227,E501,W291,W503,E266,E999
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 finalcif --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --ignore=E203,E203,E127,E128,E227,E501,W291,W503,E266,E999
- name: Test with pytest
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
# Ubuntu needs this to be able to start pyqt5
sudo apt-get update
sudo apt-get -qq install libxcb-xinerama0 pyqt6-dev-tools
# There is no enchant?
# sudo apt-get -qq install enchant
xvfb-run --auto-servernum pytest
else
uv run pytest tests
fi
|