-
Notifications
You must be signed in to change notification settings - Fork 1
80 lines (77 loc) · 2.25 KB
/
tests-worker.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
name: Test for icij-worker
on:
push:
branches: [ 'main' ]
pull_request:
paths:
- 'icij-worker/**.py'
- '.github/workflows/tests-worker.yml'
jobs:
test-icij-worker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
jupyter: true
src: "icij-worker"
version: "~= 24.2.0"
- name: Install poetry
run: pipx install poetry
- name: Installing DBmate
run: |
curl -fsSL -o /usr/local/bin/dbmate https://github.com/amacneil/dbmate/releases/download/v2.19.0/dbmate-linux-amd64
chmod +x /usr/local/bin/dbmate
- name: Setup Python project
uses: actions/setup-python@v5
with:
# TODO: use a version matrix here
python-version: "3.10"
cache: poetry
- run: cd icij-worker && poetry install -v --with dev --all-extras --sync
- name: Run tests
run: |
cd icij-worker
poetry run python -m pytest -vvv --cache-clear --show-capture=all -r A .
services:
neo4j:
image: neo4j:4.4.17
env:
NEO4J_AUTH: neo4j/theneo4jpassword
NEO4JLABS_PLUGINS: '["apoc"]'
options: >-
--health-cmd "cypher-shell -u neo4j -p theneo4jpassword -d neo4j 'CALL db.ping()'"
--health-interval 2s
--health-timeout 2s
--health-retries 10
--health-start-period 20s
ports:
- 7475:7474
- 7688:7687
test-rabbit-mq:
image: rabbitmq:3.12.0-management
options: >-
--health-cmd "rabbitmq-diagnostics -q ping"
--health-interval 2s
--health-timeout 2s
--health-retries 10
--health-start-period 20s
ports:
- 5673:5672
- 15673:15672
test-postgres:
image: postgres
env:
POSTGRES_PASSWORD: changeme
options: >-
--health-cmd pg_isready
--health-interval 2s
--health-timeout 2s
--health-retries 10
--health-start-period 5s
ports:
- "5555:5432"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true