Files
chroma/bin/test-package.sh
2023-02-09 09:49:33 -08:00

25 lines
451 B
Bash
Executable File

#!/bin/bash
# Verify PIP tarball
tarball=$(readlink -f $1)
if [ -f "$tarball" ]; then
echo "Testing PIP package from tarball: $tarball"
else
echo "Could not find PIP package: $tarball"
fi
# Create temporary project dir
dir=$(mktemp -d)
echo "Building python project dir at $dir ..."
cd $dir
python3 -m venv venv
source venv/bin/activate
pip install $tarball
python -c "import chromadb; api = chromadb.Client(); print(api.heartbeat())"