forked from autokey/autokey
-
Notifications
You must be signed in to change notification settings - Fork 0
167 lines (144 loc) · 5.45 KB
/
Copy pathpython-test.yml
File metadata and controls
167 lines (144 loc) · 5.45 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# 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: Python test
on:
# workflow_dispatch:
push:
# paths:
# - "**.py"
# Test on tags to ensure that the version metadata has been updated in tag as well.
tags:
- "*"
branches: [master, develop, beta]
pull_request:
branches: [master, develop, beta]
jobs:
Lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: Cache pip
uses: actions/cache@v4
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-pip-${{ hashFiles('pip-requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install $(cat apt-requirements.txt)
python -m pip install --upgrade pip
pip install flake8 wheel
pip install -r pip-requirements.txt
- name: Python Code Quality and Lint
uses: ricardochaves/python-lint@v1.4.0
with:
python-root-list: "lib/autokey tests"
use-pylint: false
use-pycodestyle: false
use-flake8: true
use-black: false
use-mypy: false
use-isort: false
extra-pylint-options: ""
extra-pycodestyle-options: ""
# select = stop the build if there are Python syntax errors or undefined names
# exit-zero treats all errors as warnings.
# "_" is part of gettext, not actually a built-in, but used almost
# everywhere without explicit definition.
# The GitHub editor is 127 chars wide.
extra-flake8-options: >
--count
--select=E9,F63,F7,F82
--show-source
--statistics
--builtins=_
--max-complexity=10
--max-line-length=127
extra-black-options: ""
extra-mypy-options: ""
extra-isort-options: ""
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: Cache pip
uses: actions/cache@v4
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-pip-${{ hashFiles('pip-requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install $(cat apt-requirements.txt)
python -m pip install --upgrade pip
pip install flake8 tox pytest pytest-cov wheel
pip install -r pip-requirements.txt
- name: Test with tox and pytest
run: tox -e clean,coverage,report
- name: Upload pytest test results
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.python-version }}
path: junit/test-results-${{ matrix.python-version }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
- name: Archive test coverage report
run: tar -cvzf test_coverage_report-${{ matrix.python-version }}.tar.gz test_coverage_report_html/
- name: Upload test coverage report
uses: actions/upload-artifact@v4
with:
name: test_coverage_report-${{ matrix.python-version }}.tar.gz
path: test_coverage_report-${{ matrix.python-version }}.tar.gz
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
test-install:
# Just runs basic app options to ensure pip installation has included relevant imports and put app in path.
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: Install OS dependencies only
run: |
sudo apt-get update
sudo apt-get install $(cat apt-requirements.txt)
python -m pip install --upgrade pip
pip install dbus-python gobject pygobject PyQt5 qscintilla
- name: Test installation
run: |
pip install "${GITHUB_WORKSPACE}"
autokey-gtk --help
# qt xcb module requires a display to connect to, so won't work.
# export QT_DEBUG_PLUGINS=1
# autokey-qt --help