We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c94275d commit c101839Copy full SHA for c101839
scripts/test
@@ -60,7 +60,10 @@ export DEFER_PYDANTIC_BUILD=false
60
61
function run_tests() {
62
echo "==> Running tests with Pydantic v2"
63
- uv run --all-extras pytest -W ignore::DeprecationWarning "$@"
+ uv run --isolated --all-extras pytest -W ignore::DeprecationWarning "$@"
64
+
65
+ echo "==> Running tests with Pydantic v1"
66
+ uv run --isolated --all-extras --group=pydantic-v1 pytest -W ignore::DeprecationWarning "$@"
67
}
68
69
# If UV_PYTHON is already set in the environment, just run the command once
0 commit comments