-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.15 KB
/
tests-common.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
name: Test for icij-common
on:
pull_request:
paths:
- 'icij-common/**.py'
- '.github/workflows/tests-common.yml'
jobs:
test-icij-common:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup Python project
uses: actions/setup-python@v5
with:
# TODO: use a version matrix here
python-version: 3.9
cache: poetry
- name: Install Python project
run: cd icij-common && poetry install -v --with dev --sync
- name: Run tests
run: |
cd icij-common
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