-
Notifications
You must be signed in to change notification settings - Fork 3
160 lines (136 loc) · 4.59 KB
/
ci.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
name: test
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- main
jobs:
changed-files:
runs-on: ubuntu-latest
outputs:
should_run_unit_tests: ${{ steps.check-unit-tests.outputs.src }}
should_run_integration_tests: ${{ steps.check-integration-tests.outputs.src }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- id: check-unit-tests
name: Should run unit tests
uses: dorny/paths-filter@v3
with:
filters: |
src:
- "async_batcher/**"
- "tests/**"
- "poetry.lock"
- id: check-integration-tests
name: Should run integration tests
uses: dorny/paths-filter@v3
with:
filters: |
src:
- "async_batcher/aws/**"
- "async_batcher/scylladb/**"
- "async_batcher/sqlalchemy/**"
- "tests/integration/**"
- "poetry.lock"
unit-tests:
needs: changed-files
if: ${{ needs.changed-files.outputs.should_run_unit_tests == 'true' || github.event.action == 'reopened' }}
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest", "macos-14" ]
python-version: [ "3.10", "3.11", "3.12" ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --all-extras
- name: Install library
run: poetry install --no-interaction --all-extras
- name: Run tests
run: |
source .venv/bin/activate
pytest tests/
integration-tests: # TODO: Improve this job to run just the changed integration tests
needs: changed-files
if: ${{ needs.changed-files.outputs.should_run_integration_tests == 'true' || github.event.action == 'reopened' }}
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --all-extras
- name: Install library
run: poetry install --no-interaction --all-extras
- name: Run docker-compose
run: |
docker compose \
-f docker-compose/dynamodb.yml \
-f docker-compose/postgres.yml \
up -d --wait
# TODO: Make the ScyllaDB containers more stable then activate all the integration tests
- name: Run DynamoDB integration tests
run: |
source .venv/bin/activate
pytest tests/ -m integration_dynamodb
- name: Run Postgres integration tests
run: |
source .venv/bin/activate
pytest tests/ -m integration_postgres
linter:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files