mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-08-03 00:20:58 -05:00
* WIP: recommendation api update * implement local new reco + add new tests * refactor calculate_best_scores, normalize score assertion * fix raw vectors in new recommend * fix mypy errors, add new reco on group recommend * fix more lints from ci * fix pyright lint * formattng * Add descriptions to enums * no mutable default argument * edit score comparison precision based on magnitude * Address review comments * remove custom message for type ignore * add coverage test * improve coverage test a little * add more fixtures for conversion test --------- Co-authored-by: Luis Cossío <luis.cossio@outlook.com>
7 lines
183 B
Bash
Executable File
7 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
coverage run --include='qdrant_client/conversions/conversion.py' -m pytest tests/conversions/test_validate_conversions.py -vv -s
|
|
coverage report --fail-under=97
|