mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-03 00:20:57 -05:00
* wip: re-implement http tests using openapi validation library * collection delete api * payload operations test * payload delete operations test * payload index creation and removing test * uuid operations test * schema consistency test * add tests into pipeline * chmod +x * faster local runs with docker cache * upd instruction
15 lines
357 B
Bash
Executable File
15 lines
357 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# Ensure current path is project root
|
|
cd "$(dirname "$0")/../"
|
|
|
|
cp docs/redoc/master/openapi.json openapi/tests/openapi.json
|
|
|
|
docker run --rm \
|
|
--network=host \
|
|
-e OPENAPI_FILE='openapi.json' \
|
|
-v ${PWD}/openapi/tests:/code \
|
|
$(docker build -q ./openapi/tests) sh -c /code/run_docker.sh
|