mirror of
https://github.com/placeholder-soft/chroma.git
synced 2026-01-12 22:44:55 +08:00
## Description of changes Base PR to release sqlite refactor, which spans many stacked PRs. Remaining - [x] Merge this to main - [x] Layered Persistent Index #761 - [x] Remove old impls (In #781 ) - [x] Remove persist() API (In #787) - [x] Add telemetry to SegmentAPI, it was not included. (#788) - [x] New clients #805 - [x] locking and soak tests for thread-safety - [x] Migration tool - [x] Fix #739 - [x] Fix metadata None vs empty - [x] Fix persist directory (addressed in #761) - [x] Leave files open in #761 (merge stacked PR) Post Release - [ ] Un xfail cross version tests once we cut the release - [x] Documentation updates for new silent ADD failure. - [x] Update all documentation for new API instantiation - [x] Update all documentation for settings changes - [ ] Update terraform deployment - [ ] Update cloudformation deployment --------- Co-authored-by: Luke VanderHart <luke@vanderhart.net> Co-authored-by: Jeffrey Huber <jeff@trychroma.com> Co-authored-by: Anton Troynikov <atroyn@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Sebastian Sosa <37946988+CakeCrusher@users.noreply.github.com> Co-authored-by: Russell Pollari <russell@sharpestminds.com> Co-authored-by: russell-pollari <pollarir@mgail.com>
31 lines
850 B
Bash
Executable File
31 lines
850 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
export CHROMA_PORT=8000
|
|
|
|
# Define the path to the thin client flag script
|
|
is_thin_client_py="clients/python/is_thin_client.py"
|
|
is_thin_client_target="chromadb/is_thin_client.py"
|
|
|
|
function cleanup {
|
|
rm "$is_thin_client_target"
|
|
docker compose -f docker-compose.test.yml down --rmi local --volumes
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
docker compose -f docker-compose.test.yml up --build -d
|
|
|
|
export CHROMA_INTEGRATION_TEST_ONLY=1
|
|
export CHROMA_API_IMPL=chromadb.api.fastapi.FastAPI
|
|
export CHROMA_SERVER_HOST=localhost
|
|
export CHROMA_SERVER_HTTP_PORT=8000
|
|
|
|
echo testing: python -m pytest "$@"
|
|
|
|
# Copy the thin client flag script in place, uvicorn takes a while to startup inside docker
|
|
sleep 5
|
|
cp "$is_thin_client_py" "$is_thin_client_target"
|
|
python -m pytest 'chromadb/test/property/' --ignore-glob 'chromadb/test/property/*persist.py'
|