-
Notifications
You must be signed in to change notification settings - Fork 3
236 lines (210 loc) · 6.75 KB
/
Copy pathtests.yml
File metadata and controls
236 lines (210 loc) · 6.75 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
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
name: Tests
on:
workflow_dispatch: # allow to run manually
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
jobs:
lint:
strategy:
fail-fast: false
runs-on: ubuntu-24.04
# we always use the latest container from the master branch
# this is fine because we still run all our installs just in case
container:
image: ghcr.io/onegov/onegov-cloud:master
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
defaults:
run:
shell: bash
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
name: Lint
steps:
- name: Install packages
run: |
apt-get update
apt-get install -y \
wget \
apparmor \
curl \
git-core \
postgresql \
redis \
gcc \
libc-dev \
fonts-liberation \
libappindicator3-1 \
libasound2t64 \
libcairo2-dev \
libdrm2 \
libgbm1 \
libnspr4 \
libnss3 \
libu2f-udev \
libvulkan1 \
libx11-xcb1 \
libxcb-dri3-0 \
libxshmfence1 \
libxss1 \
libxt-dev \
xdg-utils
- name: Checkout repo
uses: actions/checkout@v6
- name: Install dependencies
run: |
source /app/bin/activate
python -m pip install --upgrade uv
uv pip compile setup.cfg -U \
| uv pip install .[mypy,lint] -r /dev/stdin
- name: Linting
run: |
/app/bin/ruff check src/ tests/ stubs/ --output-format github
/app/bin/flake8 \
--format '::error file=%(path)s,line=%(row)s,col=%(col)s,title=Flake8 (%(code)s)::%(text)s' \
src/
- name: Check security issues
run: |
/app/bin/bandit \
--quiet \
--recursive \
--configfile pyproject.toml \
--format custom \
--msg-template '::error file={abspath},line={line},col={col},title=Bandit ({test_id})::{msg}' \
src/ 2> /dev/null
- name: Static type checking
run: |
source /app/bin/activate
bash mypy.sh
test:
strategy:
fail-fast: false
matrix:
group: [1, 2, 3, 4, 5, 6, 7, 8]
runs-on: ubuntu-24.04
# we always use the latest container from the master branch
# this is fine because we still run all our installs just in case
container:
image: ghcr.io/onegov/onegov-cloud:master
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
defaults:
run:
shell: bash
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
name: Test group ${{ matrix.group }}
steps:
- name: Install packages
run: |
apt-get update
apt-get install -y \
wget \
apparmor \
curl \
git-core \
postgresql \
redis \
gcc \
libc-dev \
fonts-liberation \
libappindicator3-1 \
libasound2t64 \
libcairo2-dev \
libdrm2 \
libgbm1 \
libnspr4 \
libnss3 \
libpq-dev \
libu2f-udev \
libvulkan1 \
libx11-xcb1 \
libxcb-dri3-0 \
libxshmfence1 \
libxss1 \
libxt-dev \
unzip \
xdg-utils
- name: Checkout repo
uses: actions/checkout@v6
- name: Get branch name (merge)
if: github.event_name != 'pull_request'
run: |
echo "CODECOV_BRANCH=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" \
>> $GITHUB_ENV
- name: Get branch name (pull request)
if: github.event_name == 'pull_request'
run: |
echo "CODECOV_BRANCH=$(echo ${GITHUB_HEAD_REF} | tr / -)" \
>> $GITHUB_ENV
- name: Install dependencies
run: |
source /app/bin/activate
python -m pip install --upgrade uv
uv pip install pytest-split pytest-cov pytest-codecov pytest-xdist psutil
# TEMPORARY: editable build so we don't need a path-fix in codecov
uv pip compile setup.cfg -U \
| uv pip install -e .[test] -r /dev/stdin
env:
# NOTE: Suppress uv warning
UV_LINK_MODE: copy
# TODO: Remove this step once the Dockerfile dart-sass change is merged
# to master.
- name: Install Dart Sass
run: |
if ! command -v sass &>/dev/null; then
DART_SASS_VERSION=1.100.0
curl -sL "https://github.com/sass/dart-sass/releases/download/${DART_SASS_VERSION}/dart-sass-${DART_SASS_VERSION}-linux-x64.tar.gz" \
| tar xz -C /tmp
mv /tmp/dart-sass /app/dart-sass
ln -s /app/dart-sass/sass /app/bin/sass
ln -s /app/bin/sass /usr/local/bin/sass
fi
- name: Prepare test environment
run: |
# reset the build asset permissions
# TEMPORARY: if we no longer do an editable install, then the base
# path needs to change to /app/lib/
find . -type d -iname assets -print0 | xargs -0 chmod a+w -R
# add unprivileged test user
adduser --disabled-password --gecos "" test
redis-server --daemonize yes
PG_DATA_DIR="$(pg_config --sharedir)/tsearch_data"
cp "${PG_DATA_DIR}/unaccent.rules" "${PG_DATA_DIR}/german.rules"
sed -i 's/^\([ÄÖÜäöü]\t.*\)/\1e/' "${PG_DATA_DIR}/german.rules"
run-as "$(id -u test)":test /app/bin/playwright install chromium
- name: Run tests
run: |
run-as "$(id -u test)":test /app/bin/pytest \
-n logical \
-o cache_dir=/tmp/pytest \
-r fER \
--dist loadgroup \
--splits "8" \
--group "${{matrix.group}}" \
--reruns 3 \
--reruns-delay 1 \
--only-rerun "AttributeError: 'SessionManager'" \
--only-rerun "AttributeError: 'DefaultLayout'" \
--only-rerun ".*ReferenceError: [$] is not defined" \
--only-rerun "FileNotFoundError:" \
--only-rerun "Bad response: 404 Not Found" \
--only-rerun "playwright[.]_impl[.]_errors[.]TimeoutError" \
--junit-xml=/tmp/junit.xml \
-o junit_family=legacy \
--cov \
--cov-config=pyproject.toml \
--codecov \
--codecov-branch="$CODECOV_BRANCH" \
--codecov-commit="$GITHUB_SHA" \
--codecov-slug=OneGov/onegov-cloud \
--codecov-token="${{ secrets.CODECOV_TOKEN }}" \
tests
env:
LC_ALL: C.UTF-8
LANG: C.UTF-8
SKIP_DRIVER_MANAGER: '1'