Skip to content

[pydantic v2] Validation with default value is not working #1787

@samsja

Description

@samsja

Context

 class MyDocument(BaseDoc):
        caption: TextDoc



MyDocument(caption='A tiger in the jungle')

this will fail bc I did not find a way yet to override pydantic validation for BaseDoc

many test are skipped because of this example:

@pytest.mark.skipif(

Many of tests/predefined_document failed for this reason. (search for skipif inside the folder to see which one).

Hint: to solve this one we need to highjack pydantic validation to convert the single value into a dict. We are already doing this with pydantic v1 but since pydantic v2 validation has partially been moved to the pydantic_core package it is less obvious how to do it.

Obviously, in python we can always make it work, the question is how to make it work so that it will still be aligned with pydantic guardrails regarding validation

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    Status

    Done

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions