mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-31 15:11:35 -05:00
* test: Restructure OpenAPI tests * fix: Remove cache dirs * fix: Remove cache dirs from helpers * fix: Path of openapi.json * fix: Update path of openapi tests everywhere
18 lines
206 B
Bash
Executable File
18 lines
206 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
|