mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-08-02 16:10:59 -05:00
* test for large vectors persistence * large vectors for tests * use sqlite for persistence * mypy + migration error reporting * fix sphinx version * Local persistence test fixes (#169) * Reload the collections to support multiple clients * Extend the test_local_persistence.py with assertions * prevent parallel access * fix types --------- Co-authored-by: Andrey Vasnetsov <andrey@vasnetsov.com> --------- Co-authored-by: Kacper Łukawski <kacperlukawski@users.noreply.github.com>
14 lines
280 B
Bash
Executable File
14 lines
280 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
set -xe
|
|
|
|
# Ensure current path is project root
|
|
cd "$(dirname "$0")/../"
|
|
|
|
pip install qdrant-client
|
|
|
|
pip install sphinx==4.5.0
|
|
pip install "git+https://github.com/qdrant/qdrant_sphinx_theme.git@master#egg=qdrant-sphinx-theme"
|
|
|
|
sphinx-build docs/source docs/html
|