-
Notifications
You must be signed in to change notification settings - Fork 1
197 lines (192 loc) · 7.76 KB
/
test.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# 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 Tests
on:
push:
branches:
- master
- 'release/**'
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 14
strategy:
fail-fast: false
matrix:
name:
[
# latest conan 1.X on U20 and Windows
"ubuntu20-py38",
"ubuntu20-py39",
"ubuntu20-py310",
"windows-py311",
# conan minimum version with python minimum version
"ubuntu20-conan1.48-py38",
# conan 2 stuff with bleeding edge - use Python 3.12 (U22 needed)
"ubuntu22-conan2.0.13-py310", # pre 2.0.14 API changes
"ubuntu22-conan2.0-latest-py312", # post 2.0.14 API changes
"windows-conan2-latest-py312", # latest everything
]
include:
- name: "ubuntu20-py38"
python: "3.8"
os: ubuntu-20.04
conan: "<2"
pytest_args: ""
- name: "ubuntu20-py39"
python: "3.9"
conan: "<2"
os: ubuntu-20.04
pytest_args: ""
- name: "ubuntu20-py310"
python: "3.10"
conan: "<2"
os: ubuntu-20.04
pytest_args: ""
- name: "windows-py311"
python: "3.11"
os: windows-latest
conan: "<2"
pytest_args: ""
- name: "ubuntu20-conan1.48-py38"
python: "3.8"
os: ubuntu-20.04
conan: "==1.48.0"
pytest_args: ""
- name: "ubuntu22-conan2.0.13-py310"
python: "3.10"
os: ubuntu-22.04
conan: "==2.0.13"
pytest_args: "-m conanv2"
- name: "ubuntu22-conan2.0-latest-py312"
python: "3.12"
os: ubuntu-22.04
conan: "<2.1"
pytest_args: "-m conanv2"
- name: "windows-conan2-latest-py312"
python: "3.12"
os: windows-latest
conan: "<3"
pytest_args: "-m conanv2"
env:
DISPLAY: ":99.0"
LC_ALL: "en_US.UTF-8"
CONAN_REVISIONS_ENABLED: 1
CAL_DEBUG_LEVEL: 2 # this does not use Qt Threads, but enables to see stacktraces
# QT_LOGGING_RULES=: "*.debug=true"
# QT_DEBUG_PLUGINS: 1
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip' # caching pip dependencies
cache-dependency-path: setup.py
######### Ubuntu 20.04 #########
- name: Set up a virtual display for GUI on Ubuntu 20
if: matrix.os == 'ubuntu-20.04'
run: |
sudo apt update
sudo apt install libegl1-mesa libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 \
libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 \
libxcb-xfixes0 libxcb-shape0
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid \
--make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1920x1200x24 \
-ac +extension GLX
- name: Install system dependencies for testing on Ubuntu 20
if: matrix.os == 'ubuntu-20.04'
run: | # terminal, file manager, xwininfo, text-editor
sudo apt install lxterminal nautilus x11-utils mousepad xdg-utils
sudo apt install dbus-x11 at-spi2-core
pip install PySide6-Essentials==6.4.3
######### Ubuntu 22.04 #########
- name: Set up a virtual display for GUI on Ubuntu 22
if: matrix.os == 'ubuntu-22.04'
run: |
sudo apt update
sudo apt install xvfb libegl1-mesa libxkbcommon-x11-0 '^libxcb.*'
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid \
--make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1920x1200x24 \
-ac +extension GLX
# apt-get install -y libglib2.0-0 libsm6 libxrender1 libxext6
- name: Install system dependencies for testing on Ubuntu 22
if: matrix.os == 'ubuntu-22.04'
run: | # terminal, file manager, xwininfo, text-editor
sudo apt install lxterminal nautilus x11-utils mousepad xdg-utils
sudo apt install dbus-x11 at-spi2-core
sudo apt install qt6-wayland
######### Platform specifics end #########
- name: Install specific Conan version
run: | # markupsafe is a workaround fix for broken conan dependencies
pip install markupsafe==2.0.1 --use-pep517
pip install "conan${{ matrix.conan }}" --use-pep517
- name: Install own package and test dependencies
# need -e because of coverage paths.
run: |
pip install -e .[test]
env:
CONAN_VERSION: ${{ matrix.conan}}
- name: Execute unitests with pytest
run: >-
pytest -v test/01_unit --junit-xml=./results/result-unit-${{matrix.name}}.xml
--cov=conan_explorer --cov-branch --cov-append --capture=no ${{matrix.pytest_args}}
- name: Execute integration with pytest
env:
SKIP_CREATE_CONAN_TEST_DATA: True
run: >-
pytest -v test/02_integration --junit-xml=./results/result-integration-${{matrix.name}}.xml
--cov=conan_explorer --cov-branch --cov-append --capture=no ${{matrix.pytest_args}}
- name: Execute system with pytest # Reinstall into site-packages to find install and pkg problems
env:
SKIP_CREATE_CONAN_TEST_DATA: True
run: >-
pytest -v test/03_system --junit-xml=./results/result-system-${{matrix.name}}.xml
--cov-report xml:cov/cov-${{matrix.name}}.xml --cov=conan_explorer --cov-branch --cov-append ${{matrix.pytest_args}}
- name: Upload Test results
uses: actions/upload-artifact@v3 # TODO: v4 does not support overwrite anymore
with:
name: Test results
path: |
cov/
results/
sonarcloud:
if: always() # eecute, even when tests fail
needs:
- test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting,
# cf https://sonarcloud.io/project/configuration?analysisMode=GitHubActions
fetch-depth: 0
- uses: actions/download-artifact@v3
with:
name: Test results
path: ./
- name: Fix code coverage paths
working-directory: ./cov
run: |
sed -i 's@/home/runner/work/conan_explorer/conan_explorer@.@g' cov-*.xml
sed -i 's@D:\a\conan_explorer\conan_explorer@.@g' cov-*.xml
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
-Dsonar.organization=goszpeti
-Dsonar.projectKey=goszpeti_conan_explorer
-Dsonar.sources=./src
-Dsonar.exclusions=**/*_ui.py
-Dsonar.tests=./test
-Dsonar.sourceEncoding=UTF-8
-Dsonar.python.version=3.8,3.9,3.10,3.11
-Dsonar.python.coverage.reportPaths=cov/cov-*.xml
-Dsonar.python.xunit.reportPath=results/result-*-ubuntu-py39.xml