-
Notifications
You must be signed in to change notification settings - Fork 1.6k
298 lines (289 loc) · 11.7 KB
/
_python-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
name: Chroma Python Base Tests
on:
workflow_call:
inputs:
python_versions:
description: 'Python versions to test (as json array)'
required: false
default: '["3.9"]'
type: string
property_testing_preset:
description: 'Property testing preset'
required: true
type: string
jobs:
test-rust-bindings:
timeout-minutes: 90
strategy:
fail-fast: false
matrix:
python: ${{fromJson(inputs.python_versions)}}
platform: [blacksmith-8vcpu-ubuntu-2204, 16core-64gb-windows-latest]
test-globs:
- "--ignore-glob 'chromadb/test/property/*' --ignore-glob 'chromadb/test/stress/*' --ignore-glob 'chromadb/test/distributed/*'"
- "chromadb/test/property --ignore-glob chromadb/test/property/test_cross_version_persist.py"
# TODO(@codetheweb): this test should be parallelized, but it frequently flakes in CI when parallelized. We have not been able to reproduce the failure locally. See https://github.com/chroma-core/chroma/issues/4263.
- "chromadb/test/property/test_cross_version_persist.py"
include:
- test-globs: "chromadb/test/property --ignore-glob chromadb/test/property/test_cross_version_persist.py"
parallelized: true
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: ./.github/actions/python
with:
python-version: ${{ matrix.python }}
- name: Setup Rust
uses: ./.github/actions/rust
with:
github-token: ${{ github.token }}
- name: Build Rust bindings
uses: PyO3/maturin-action@v1
with:
command: build
sccache: true
- name: Install built wheel
shell: bash
run: pip install --no-index --find-links target/wheels/ chromadb
- name: Configure pytest to upload results to Datadog
uses: datadog/test-visibility-github-action@v2
# This action currently fails on Windows (https://github.com/DataDog/test-visibility-github-action/issues/36)
if: ${{ !contains(matrix.platform, 'windows') }}
with:
languages: python
api_key: ${{ secrets.DD_API_KEY }}
site: ${{ vars.DD_SITE }}
- name: Test
run: python -m pytest ${{ matrix.test-globs }} ${{ matrix.parallelized && '-n auto --dist worksteal' || '' }} -v --color=yes --durations 10
shell: bash
env:
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
CHROMA_RUST_BINDINGS_TEST_ONLY: "1"
RUST_BACKTRACE: 1
test-rust-single-node-integration:
strategy:
fail-fast: false
matrix:
python: ${{fromJson(inputs.python_versions)}}
platform: [blacksmith-4vcpu-ubuntu-2204, windows-latest]
test-globs: ["--ignore-glob 'chromadb/test/property/*' --ignore-glob 'chromadb/test/stress/*' --ignore='chromadb/test/test_cli.py' --ignore-glob 'chromadb/test/distributed/*'",
"chromadb/test/property/test_add.py",
"chromadb/test/property/test_collections.py",
"chromadb/test/property/test_collections_with_database_tenant.py",
"chromadb/test/property/test_cross_version_persist.py",
"chromadb/test/property/test_embeddings.py",
"chromadb/test/property/test_filtering.py",
"chromadb/test/property/test_persist.py",
"chromadb/test/stress"]
include:
- platform: blacksmith-4vcpu-ubuntu-2204
env-file: compose-env.linux
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python (${{ matrix.python }})
uses: ./.github/actions/python
- name: Setup Rust
uses: ./.github/actions/rust
with:
github-token: ${{ github.token }}
- name: Configure pytest to upload results to Datadog
uses: datadog/test-visibility-github-action@v2
# This action currently fails on Windows (https://github.com/DataDog/test-visibility-github-action/issues/36)
if: ${{ !contains(matrix.platform, 'windows') }}
with:
languages: python
api_key: ${{ secrets.DD_API_KEY }}
site: ${{ vars.DD_SITE }}
- name: Rust Integration Test
run: bin/rust-integration-test.sh ${{ matrix.test-globs }}
shell: bash
env:
ENV_FILE: ${{ matrix.env-file }}
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
test-rust-thin-client:
strategy:
matrix:
python: ${{fromJson(inputs.python_versions)}}
platform: [blacksmith-4vcpu-ubuntu-2204, windows-latest]
test-globs: ["chromadb/test/property/test_add.py",
"chromadb/test/property/test_collections.py",
"chromadb/test/property/test_collections_with_database_tenant.py",
"chromadb/test/property/test_embeddings.py",
"chromadb/test/property/test_filtering.py"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Set up Python (${{ matrix.python }})
uses: ./.github/actions/python
with:
python-version: ${{ matrix.python }}
- name: Setup Rust
uses: ./.github/actions/rust
with:
github-token: ${{ github.token }}
- name: Configure pytest to upload results to Datadog
uses: datadog/test-visibility-github-action@v2
# This action currently fails on Windows (https://github.com/DataDog/test-visibility-github-action/issues/36)
if: ${{ !contains(matrix.platform, 'windows') }}
with:
languages: python
api_key: ${{ secrets.DD_API_KEY }}
site: ${{ vars.DD_SITE }}
- name: Test
run: bin/rust-integration-test.sh ${{ matrix.test-globs }}
shell: bash
env:
CHROMA_THIN_CLIENT: "1"
ENV_FILE: ${{ matrix.env-file }}
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
test-cluster-rust-frontend:
strategy:
fail-fast: false
matrix:
python: ${{fromJson(inputs.python_versions)}}
platform: ["blacksmith-16vcpu-ubuntu-2204"]
test-globs: ["chromadb/test/api",
"chromadb/test/api/test_collection.py",
"chromadb/test/api/test_limit_offset.py",
"chromadb/test/property/test_collections.py",
"chromadb/test/property/test_add.py",
"chromadb/test/property/test_filtering.py",
"chromadb/test/property/test_fork.py",
"chromadb/test/property/test_embeddings.py",
"chromadb/test/property/test_collections_with_database_tenant.py",
"chromadb/test/property/test_collections_with_database_tenant_overwrite.py",
"chromadb/test/distributed/test_sanity.py"]
runs-on: ${{ matrix.platform }}
# OIDC token auth for AWS
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/python
with:
python-version: ${{ matrix.python }}
# TODO(adityamaru): Add Datadog test visibility when running in Chroma's repo.
# - name: Configure pytest to upload results to Datadog
# uses: datadog/test-visibility-github-action@v2
# with:
# languages: python
# api_key: ${{ secrets.DD_API_KEY }}
# site: ${{ vars.DD_SITE }}
- uses: useblacksmith/[email protected]
with:
setup-only: true
- uses: ./.github/actions/tilt
- name: Test
run: bin/cluster-test.sh bash -c 'python -m pytest "${{ matrix.test-globs }}"' --durations 10
shell: bash
env:
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
CHROMA_RUST_FRONTEND_TEST_ONLY: "1"
CHROMA_SERVER_HOST: "localhost:3000"
- name: Compute artifact name
if: always()
id: compute-artifact-name
run: echo "artifact_name=cluster_logs_rust_frontend_$(basename "${{ matrix.test-globs }}" .py)_${{ matrix.python }}" >> $GITHUB_OUTPUT
- name: Save service logs to artifact
if: always()
uses: ./.github/actions/export-tilt-logs
with:
artifact-name: ${{ steps.compute-artifact-name.outputs.artifact_name }}
merge-cluster-logs:
runs-on: blacksmith-4vcpu-ubuntu-2204
needs: test-cluster-rust-frontend
steps:
- name: Merge
uses: actions/upload-artifact/merge@v4
with:
name: cluster_test_logs
pattern: cluster_logs_*
test-rust-bindings-stress:
timeout-minutes: 90
strategy:
fail-fast: false
matrix:
python: ${{fromJson(inputs.python_versions)}}
platform: [blacksmith-16vcpu-ubuntu-2204, 16core-64gb-windows-latest]
test-globs: ["chromadb/test/stress"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: ./.github/actions/python
with:
python-version: ${{ matrix.python }}
- name: Setup Rust
uses: ./.github/actions/rust
with:
github-token: ${{ github.token }}
- name: Build Rust bindings
uses: PyO3/maturin-action@v1
with:
command: build
sccache: true
- name: Install built wheel
shell: bash
run: pip install --no-index --find-links target/wheels/ chromadb
- name: Configure pytest to upload results to Datadog
uses: datadog/test-visibility-github-action@v2
# This action currently fails on Windows (https://github.com/DataDog/test-visibility-github-action/issues/36)
if: ${{ !contains(matrix.platform, 'windows') }}
with:
languages: python
api_key: ${{ secrets.DD_API_KEY }}
site: ${{ vars.DD_SITE }}
- name: Test
run: python -m pytest ${{ matrix.test-globs }} --durations 10
shell: bash
env:
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}
CHROMA_RUST_BINDINGS_TEST_ONLY: "1"
test-python-cli:
strategy:
fail-fast: false
matrix:
python: ${{fromJson(inputs.python_versions)}}
platform: [blacksmith-4vcpu-ubuntu-2204, windows-latest]
test-globs: ["chromadb/test/test_cli.py"]
include:
- platform: blacksmith-4vcpu-ubuntu-2204
env-file: compose-env.linux
- platform: windows-latest
env-file: compose-env.windows
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python (${{ matrix.python }})
uses: ./.github/actions/python
- name: Setup Rust
uses: ./.github/actions/rust
with:
github-token: ${{ github.token }}
- name: Build Rust bindings
uses: PyO3/maturin-action@v1
with:
command: build
sccache: true
- name: Install built wheel
shell: bash
run: pip install --no-index --find-links target/wheels/ chromadb
- name: Configure pytest to upload results to Datadog
uses: datadog/test-visibility-github-action@v2
# This action currently fails on Windows (https://github.com/DataDog/test-visibility-github-action/issues/36)
if: ${{ !contains(matrix.platform, 'windows') }}
with:
languages: python
api_key: ${{ secrets.DD_API_KEY }}
site: ${{ vars.DD_SITE }}
- name: Integration Test
run: bin/python-integration-test ${{ matrix.test-globs }}
shell: bash
env:
ENV_FILE: ${{ matrix.env-file }}
PROPERTY_TESTING_PRESET: ${{ inputs.property_testing_preset }}