mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-23 11:11:00 -05:00
* fix default opeapi file path * better capture of process id in integration-tests.sh * add pycache to gitignore * add extra case for order_by test * parse dates without timezone but with decimals correctly * update payload_indexing test * add extra test for space-separated date
10 lines
321 B
Python
10 lines
321 B
Python
import os
|
|
|
|
import schemathesis
|
|
|
|
ROOT_DIR = os.path.dirname(__file__)
|
|
OPENAPI_FILE = os.environ.get("OPENAPI_FILE", os.path.join(os.path.dirname(ROOT_DIR), '../../../openapi', 'openapi-merged.yaml'))
|
|
|
|
SCHEMA = schemathesis.from_file(open(OPENAPI_FILE))
|
|
QDRANT_HOST = os.environ.get("QDRANT_HOST", "http://localhost:6333")
|