mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-02 08:00:55 -05:00
* improve alias tests * introduce new alias persistence and remove Sled * introduce FileStorageError * use new error in AliasMapping * aliases are kept in memory and saved to disk when modified * better naming * make alias renaming atomic * fmt * use correct alias and docs * code review: cleaner error conversion
18 lines
215 B
Bash
Executable File
18 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
function 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
|