mirror of
https://github.com/run-llama/llama-cloud-py.git
synced 2026-08-24 10:52:54 -04:00
16 lines
214 B
Bash
Executable File
16 lines
214 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
|
|
|
|
export DEFER_PYDANTIC_BUILD=false
|
|
|
|
echo "==> Running tests"
|
|
rye run pytest "$@"
|
|
|
|
echo "==> Running Pydantic v1 tests"
|
|
rye run nox -s test-pydantic-v1 -- "$@"
|