-
-
Notifications
You must be signed in to change notification settings - Fork 418
145 lines (118 loc) · 3.88 KB
/
tests.yml
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
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
# Define a minimal test matrix, it will be
# expanded using subsequent `include` items.
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10"]
bare: [false]
include:
# Within the `bare` environment, `all-plugin-requirements.txt` will NOT be
# installed, to verify the application also works without those dependencies.
- os: "ubuntu-latest"
python-version: "3.10"
bare: true
# 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.
- 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"
- 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"
defaults:
run:
shell: bash
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
BARE: ${{ matrix.bare }}
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} ${{ matrix.bare && '(bare)' || '' }}
steps:
- name: Acquire sources
uses: actions/checkout@v3
- name: Install prerequisites (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
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
- name: Install project dependencies (Windows)
if: runner.os == 'Windows'
run: |
pip install -r win-requirements.txt || true
# 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
token: ${{ secrets.CODECOV_TOKEN }}