Spaces:
Sleeping
Sleeping
File size: 321 Bytes
287a0bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/usr/bin/env bash
set -e
# Assert first argument is present
if [ -z "$1" ]; then
echo "Usage: bin/test-remote <remote-host>"
exit 1
fi
export CHROMA_INTEGRATION_TEST_ONLY=1
export CHROMA_SERVER_HOST=$1
export CHROMA_API_IMPL=chromadb.api.fastapi.FastAPI
export CHROMA_SERVER_HTTP_PORT=8000
python -m pytest
|