mirror of
https://github.com/qdrant/qdrant.git
synced 2026-09-26 16:07:41 -05:00
19 lines
242 B
Bash
Executable File
19 lines
242 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
clear_after_tests()
|
|
{
|
|
rm -rf .hypothesis .pytest_cache
|
|
}
|
|
|
|
|
|
# This script is supposed to be executed from the docker image
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
trap clear_after_tests EXIT
|
|
|
|
pytest -s
|
|
QDRANT__ON_DISK_VECTORS=1 pytest -s
|