-
Notifications
You must be signed in to change notification settings - Fork 7
351 lines (289 loc) · 9.2 KB
/
ci_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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
---
name: CI - Tests
on:
pull_request:
push:
branches:
- develop
- push-action/**
jobs:
pre-commit:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools
while IFS="" read -r line || [ -n "${line}" ]; do
if [[ "${line}" =~ ^pre-commit.*$ ]]; then
pre_commit="${line}"
fi
done < requirements_dev.txt
pip install ${pre_commit}
- name: Test with pre-commit
run: SKIP=codecov-validator pre-commit run --all-files --show-diff-on-failure
pytest:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
services:
mongo:
image: mongo:4
ports:
- 27017:27017
postgres:
image: postgres:12
env:
POSTGRES_DB: test_psql_dos
POSTGRES_PASSWORD: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
AIIDA_TEST_BACKEND: core.psql_dos
AIIDA_TEST_PROFILE: test_psql_dos
AIIDA_PROFILE: test_psql_dos
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Python ${{ matrix.python-version}}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version}}
- name: Install python dependencies
run: |
python -m pip install -U pip
pip install -U setuptools
pip install -e .[testing]
- name: Setup up environment for AiiDA
run: .github/aiida/setup_aiida.sh
- name: Test with pytest (AiiDA)
run: pytest -v --cov=./aiida_optimade/ --cov-report=xml --durations=20
- name: Test with pytest (Data Curation)
env:
PYTEST_OPTIMADE_CONFIG_FILE: ./tests/static/test_data_curation_config.json
run: pytest -v --cov=./aiida_optimade/ --cov-report=xml --cov-append --durations=20 tests/server/routers/test_structures.py::test_structures_endpoint_data
- name: Test with pytest (MongoDB)
env:
PYTEST_OPTIMADE_CONFIG_FILE: ./tests/static/test_mongo_config.json
OPTIMADE_MONGO_URI: mongodb://localhost:27017
OPTIMADE_DATABASE_BACKEND: mongodb
run: pytest -v --cov=./aiida_optimade/ --cov-report=xml:mongo_cov.xml --durations=20
- name: Upload coverage to Codecov
if: matrix.python-version == 3.9
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: aiida
file: ./coverage.xml
- name: Upload coverage to Codecov
if: matrix.python-version == 3.9
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: mongo
file: ./mongo_cov.xml
docker:
runs-on: ubuntu-latest
timeout-minutes: 14
strategy:
fail-fast: false
matrix:
database: [aiida, mongo]
services:
mongo:
image: mongo:4
ports:
- 27017:27017
postgres:
image: postgres:12
env:
POSTGRES_DB: test_psql_dos
POSTGRES_PASSWORD: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools
while IFS="" read -r line || [ -n "${line}" ]; do
if [[ "${line}" =~ ^aiida-core.*$ ]]; then
aiida_core="${line}"
fi
done < requirements.txt
pip install ${aiida_core}
pip install pymongo
- name: Setup up environment for AiiDA
env:
AIIDA_TEST_BACKEND: core.psql_dos
run: .github/aiida/setup_aiida.sh
- name: Load test data
run: |
if [ "${{ matrix.database }}" == "aiida" ]; then
verdi archive import --migration .github/aiida/optimade.aiida
else
.github/mongo/load_data.py
fi
- name: Build docker image
if: matrix.database == 'mongo'
run: docker-compose -f profiles/docker-compose.yml build --build-arg CONFIG_FILE=".github/mongo/ci_config.json"
- name: Start the Docker image
env:
AIIDA_OPTIMADE_LOG_LEVEL: DEBUG
run: |
export DOCKER_HOST_IP=$(ip route | grep docker0 | awk '{print $9}')
docker-compose -f profiles/docker-compose.yml up &
.github/utils/wait_for_it.sh localhost:3253 -t 360
sleep 15
- name: Test server with OPTIMADE Validator
uses: Materials-Consortia/optimade-validator-action@v2
with:
port: 3253
all versioned paths: yes
validate unversioned path: yes
validator version: latest
docker-mongo:
runs-on: ubuntu-latest
timeout-minutes: 14
services:
postgres:
image: postgres:12
env:
POSTGRES_DB: test_psql_dos
POSTGRES_PASSWORD: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools
while IFS="" read -r line || [ -n "${line}" ]; do
if [[ "${line}" =~ ^aiida-core.*$ ]]; then
aiida_core="${line}"
fi
done < requirements.txt
pip install ${aiida_core}
- name: Setup up environment for AiiDA
env:
AIIDA_TEST_BACKEND: core.psql_dos
run: .github/aiida/setup_aiida.sh
- name: Load test data (AiiDA)
run: verdi archive import --migration .github/aiida/optimade.aiida
- name: Build docker image
run: docker-compose -f profiles/docker-compose-mongo.yml build --build-arg CONFIG_FILE=".github/mongo/ci_config.json"
- name: Start the Docker image
env:
AIIDA_OPTIMADE_LOG_LEVEL: INFO
USE_MONGO: --mongo
run: |
export DOCKER_HOST_IP=$(ip route | grep docker0 | awk '{print $9}')
docker-compose -f profiles/docker-compose-mongo.yml up &
.github/utils/wait_for_it.sh localhost:3253 -t 360
# Long sleep, because the initialization is needed
sleep 150
- name: Test server with OPTIMADE Validator
uses: Materials-Consortia/optimade-validator-action@v2
with:
port: 3253
all versioned paths: yes
validate unversioned path: yes
validator version: latest
docker-mongo-filename:
runs-on: ubuntu-latest
timeout-minutes: 14
services:
postgres:
image: postgres:12
env:
POSTGRES_DB: test_psql_dos
POSTGRES_PASSWORD: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools
while IFS="" read -r line || [ -n "${line}" ]; do
if [[ "${line}" =~ ^aiida-core.*$ ]]; then
aiida_core="${line}"
fi
done < requirements.txt
pip install ${aiida_core}
- name: Setup up environment for AiiDA
env:
AIIDA_TEST_BACKEND: core.psql_dos
run: .github/aiida/setup_aiida.sh
- name: Build docker image
run: docker-compose -f profiles/docker-compose-mongo.yml build --build-arg CONFIG_FILE=".github/mongo/ci_config.json"
- name: Start the Docker image
env:
AIIDA_OPTIMADE_LOG_LEVEL: INFO
USE_MONGO: --mongo
MONGO_FILENAME: test_structures_mongo.json
run: |
export DOCKER_HOST_IP=$(ip route | grep docker0 | awk '{print $9}')
docker-compose -f profiles/docker-compose-mongo.yml up &
.github/utils/wait_for_it.sh localhost:3253 -t 360
# Longer sleep, because the initialization is needed
sleep 30
- name: Test server with OPTIMADE Validator
uses: Materials-Consortia/optimade-validator-action@v2
with:
port: 3253
all versioned paths: yes
validate unversioned path: yes
validator version: latest
build-package:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Check build and install source distribution
uses: CasperWA/check-sdist-action@v1