mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-23 11:11:00 -05:00
* Move pyproject and uv.lock to tests folder * Make tests working-dir agnostic * Fix test * Address review
24 lines
1.1 KiB
Bash
Executable File
24 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Usage: tools/integration-test-coverage.sh
|
|
#
|
|
# If using locally, occasionally run `cargo llvm-cov clean` to avoid bloating `target/llvm-cov-target` dir with .profraw files
|
|
|
|
|
|
# Check if target/llvm-cov-target/debug/qdrant exists, if not build it:
|
|
if [ ! -f target/llvm-cov-target/debug/qdrant ]; then
|
|
echo "Building qdrant with LLVM coverage instrumentation..."
|
|
RUSTFLAGS="-C instrument-coverage" cargo build --features "service_debug data-consistency-check" --locked --target-dir target/llvm-cov-target
|
|
else
|
|
echo "INFO: target/llvm-cov-target/debug/qdrant already exists, skipping build step."
|
|
fi
|
|
|
|
export COVERAGE=1
|
|
|
|
uv --project tests run bash ./tests/integration-tests.sh # generates qdrant-openapi-*.profraw files
|
|
uv --project tests run bash ./tests/integration-tests.sh distributed # generates qdrant-openapi-*.profraw files
|
|
uv --project tests run pytest tests/consensus_tests --durations=10 # generates qdrant-consensus-tests-*.profraw files
|
|
|
|
# Merges all the .profraw files into a single .profdata file and generates the lcov report
|
|
cargo llvm-cov report --lcov --output-path integration-test-coverage.lcov
|