Skip to content

Commit ed55f72

Browse files
[CHORE] CI failed with INTERNALERROR (#5380)
## Description of changes This PR is for fixing the failure of CI with INTERNALERROR. ## Test plan CI ## Migration plan N/A ## Observability plan N/A ## Documentation Changes N/A --------- Co-authored-by: propel-code-bot[bot] <203372662+propel-code-bot[bot]@users.noreply.github.com>
1 parent cd9cef5 commit ed55f72

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/actions/tilt/action.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ runs:
1717
kubectl -n chroma port-forward svc/logservice 50052:50051 &
1818
kubectl -n chroma port-forward svc/rust-log-service 50054:50051 &
1919
kubectl -n chroma port-forward svc/query-service 50053:50051 &
20-
kubectl -n chroma port-forward svc/frontend-service 8000:8000 &
2120
kubectl -n chroma port-forward svc/rust-frontend-service 8000:8000 &
2221
kubectl -n chroma port-forward svc/minio 9000:9000 &
2322
kubectl -n chroma port-forward svc/jaeger 16686:16686 &

.github/workflows/_python-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- "chromadb/test/property/test_cross_version_persist.py"
3232
include:
3333
- test-glob: "chromadb/test/property --ignore-glob chromadb/test/property/test_cross_version_persist.py"
34-
parallelized: true
34+
parallelized: false # Disabled to fix INTERNALERROR crashes in CI
3535

3636
runs-on: ${{ inputs.runner }}
3737
steps:
@@ -144,7 +144,7 @@ jobs:
144144
- "chromadb/test/distributed/test_repair_collection_log_offset.py"
145145
include:
146146
- test-glob: "chromadb/test/property/test_add.py"
147-
parallelized: true
147+
parallelized: false
148148
- test-glob: "chromadb/test/property/test_embeddings.py"
149149
parallelized: true
150150
runs-on: blacksmith-8vcpu-ubuntu-2204
@@ -284,7 +284,7 @@ jobs:
284284
shell: bash
285285
run: pip install --no-index --find-links target/wheels/ chromadb
286286
- name: Run tests
287-
run: python -m pytest chromadb/test/test_api.py -n auto --dist worksteal -v --color=yes --durations 10
287+
run: python -m pytest chromadb/test/test_api.py ${{ matrix.parallelized && '-n auto --dist worksteal' || '' }} -v --color=yes --durations 10
288288
shell: bash
289289
env:
290290
CHROMA_RUST_BINDINGS_TEST_ONLY: "1"

0 commit comments

Comments
 (0)