Merge branch 'master' into bagatur/locals_in_config

This commit is contained in:
Bagatur 2023-08-17 16:24:28 -07:00
commit 89bec58cbb
2 changed files with 7 additions and 3 deletions

View File

@ -46,7 +46,11 @@ jobs:
elif [ "${{ matrix.test_type }}" == "core-pydantic-2" ]; then
echo "Running core-pydantic-v2 tests, installing dependencies with poetry..."
poetry install
poetry add pydantic@2.1
# Install via `pip` instead of `poetry add` to avoid changing lockfile,
# which would prevent caching from working: the cache would get saved
# to a different key than where it gets loaded from.
poetry run pip install 'pydantic>=2.1,<3'
else
echo "Running extended tests, installing dependencies with poetry..."
poetry install -E extended_testing

Binary file not shown.

Before

Width:  |  Height:  |  Size: 232 KiB

After

Width:  |  Height:  |  Size: 288 KiB