Jörg Herbel
Jörg Herbel
For a number of our problems, we have a rough of a functional form that should be close to the "right answer". Is there a way to feed this in...
### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description The code below crashes with the following traceback. See also https://github.com/pydantic/pydantic/issues/8897, which was closed. ``` Traceback...
### Checklist - [x] I checked the [FAQ section](https://schemathesis.readthedocs.io/en/stable/faq.html#frequently-asked-questions) of the documentation - [x] I looked for similar issues in the [issue tracker](https://github.com/schemathesis/schemathesis/issues) - [x] I am using the latest...
### Steps to reproduce Run pytest on the following file: ``` import astroid def test_something() -> None: astroid.parse("123") ``` Result without schemathesis: ``` $ pytest /home/joerg/tmp/test_with_astroid.py =================================== test session starts...