2022-10-18 13:18:50 +02:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
|
|
|
# On which repository actions to trigger the build.
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
# Allow job to be triggered manually.
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
# Cancel in-progress jobs when pushing to the same branch.
|
|
|
|
concurrency:
|
|
|
|
cancel-in-progress: true
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
|
|
|
|
# Run all jobs to completion (false), or cancel
|
|
|
|
# all jobs once the first one fails (true).
|
|
|
|
fail-fast: true
|
|
|
|
|
2022-10-30 21:31:57 +01:00
|
|
|
# Define a minimal test matrix, it will be
|
|
|
|
# expanded using subsequent `include` items.
|
2022-10-18 13:18:50 +02:00
|
|
|
matrix:
|
2022-10-30 21:31:57 +01:00
|
|
|
os: ["ubuntu-latest"]
|
|
|
|
python-version: ["3.10"]
|
2022-10-18 13:18:50 +02:00
|
|
|
bare: [false]
|
|
|
|
|
|
|
|
include:
|
2022-10-30 21:31:57 +01:00
|
|
|
|
|
|
|
# Within the `bare` environment, `all-plugin-requirements.txt` will NOT be
|
|
|
|
# installed, to verify the application also works without those dependencies.
|
2022-10-18 13:18:50 +02:00
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "3.10"
|
|
|
|
bare: true
|
|
|
|
|
2022-10-30 21:31:57 +01:00
|
|
|
# Let's save resources and only build a single slot on macOS- and Windows.
|
|
|
|
- os: "macos-latest"
|
|
|
|
python-version: "3.10"
|
|
|
|
- os: "windows-latest"
|
|
|
|
python-version: "3.10"
|
|
|
|
|
|
|
|
# Test more available versions of CPython on Linux.
|
2022-12-10 18:23:48 +01:00
|
|
|
- os: "ubuntu-20.04"
|
|
|
|
# v3.6 (exclusively referenced) is not supported by GitHub anymore)
|
|
|
|
# v3.6.8 is fixed since it is the version CentOS/Rocky/RedHat v8 uses
|
|
|
|
python-version: "3.6.8"
|
2022-10-30 21:31:57 +01:00
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "3.7"
|
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "3.8"
|
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "3.9"
|
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "3.10"
|
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "3.11"
|
|
|
|
|
|
|
|
# Test more available versions of PyPy on Linux.
|
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "pypy3.6"
|
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "pypy3.7"
|
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "pypy3.8"
|
|
|
|
- os: "ubuntu-latest"
|
|
|
|
python-version: "pypy3.9"
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
2022-10-18 13:18:50 +02:00
|
|
|
env:
|
|
|
|
OS: ${{ matrix.os }}
|
|
|
|
PYTHON: ${{ matrix.python-version }}
|
|
|
|
BARE: ${{ matrix.bare }}
|
|
|
|
|
2022-10-30 21:31:57 +01:00
|
|
|
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} ${{ matrix.bare && '(bare)' || '' }}
|
2022-10-18 13:18:50 +02:00
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Acquire sources
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install prerequisites (Linux)
|
|
|
|
if: runner.os == 'Linux'
|
|
|
|
run: |
|
2022-10-30 12:27:10 +01:00
|
|
|
sudo apt-get update
|
2022-10-18 13:18:50 +02:00
|
|
|
sudo apt-get install libdbus-1-dev
|
|
|
|
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
architecture: x64
|
|
|
|
cache: 'pip'
|
|
|
|
cache-dependency-path: |
|
|
|
|
setup.py
|
|
|
|
requirements.txt
|
|
|
|
dev-requirements.txt
|
|
|
|
all-plugin-requirements.txt
|
|
|
|
win-requirements.txt
|
|
|
|
|
|
|
|
- name: Install project dependencies (Baseline)
|
|
|
|
run: |
|
|
|
|
pip install wheel
|
|
|
|
pip install -r requirements.txt -r dev-requirements.txt
|
|
|
|
|
|
|
|
- name: Install project dependencies (All plugins)
|
|
|
|
if: matrix.bare != true
|
|
|
|
run: |
|
|
|
|
pip install -r all-plugin-requirements.txt
|
|
|
|
|
2022-10-30 21:31:57 +01:00
|
|
|
# Installing `dbus-python` will only work on Linux/CPython.
|
|
|
|
[[ $RUNNER_OS = "Linux" && $PYTHON != 'pypy'* ]] && pip install dbus-python || true
|
2022-10-18 13:18:50 +02:00
|
|
|
|
|
|
|
- name: Install project dependencies (Windows)
|
|
|
|
if: runner.os == 'Windows'
|
|
|
|
run: |
|
2022-10-30 21:31:57 +01:00
|
|
|
[[ $PYTHON != 'pypy'* ]] && pip install -r win-requirements.txt || true
|
2022-10-18 13:18:50 +02:00
|
|
|
|
|
|
|
# Install package in editable mode,
|
|
|
|
# and run project-specific tasks.
|
|
|
|
- name: Setup project
|
|
|
|
run: |
|
|
|
|
pip install --editable=.
|
|
|
|
python setup.py compile_catalog
|
|
|
|
|
|
|
|
# For saving resources, code style checking is
|
|
|
|
# only invoked within the `bare` environment.
|
|
|
|
- name: Check code style
|
|
|
|
if: matrix.bare == true
|
|
|
|
run: |
|
|
|
|
flake8 . --count --show-source --statistics
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
coverage run -m pytest
|
|
|
|
|
|
|
|
- name: Process coverage data
|
|
|
|
run: |
|
|
|
|
coverage combine
|
|
|
|
coverage xml
|
|
|
|
coverage report
|
|
|
|
|
|
|
|
- name: Upload coverage data
|
|
|
|
uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
files: ./coverage.xml
|
|
|
|
fail_ci_if_error: false
|
2022-10-31 02:54:11 +01:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|