-
Hi there,
Thanks for this useful library. I am integrating it in the starlite pipeline (https://github.com/starlite-api/starlite).
Would be awesome if I could run this as part of pre-commit. For…
-
When specifying my model, using a `Literal`, I run into an error in the generation.
```python
class MyModel(BaseModel):
mykey: Literal['attribute']
```
Pydantic model error output
```
E…
-
## Issue
I'm trying to generate some deeply nested models, and somewhere in the tree are fields defined as `Optional[Exception]`. Pydantic Factories doesn't have a handler for Exception. I'm not su…
-
Hi, when using the `ModelFactory` I get the next mypy error:
```
Class cannot subclass "ModelFactory" (has type "Any") [misc]
```
For example with the code in the readme:
```python
from d…
-
Hi @Goldziher first of all, thank you, thank you and thank you. I've been close to create something like this several times. You're a life saver :)
In most of my pydantic models I have some propert…
-
Hello, thanks for making this library. Been looking forward to seeing something like this.
i noticed that in https://github.com/Goldziher/pydantic-factories/issues/5 it was decided to include None…
-
### Solution to issue cannot be found in the documentation.
- [X] I checked the documentation.
### Issue
When installing the `locust` package from conda-forge on a windows platform, the execution f…
-
This is a side-effect of the change in `1.3.9` and the way that I've structured the consumption of dependencies in the example app.
The `__init__()` method of the repository looks like this:
```…
-
In my spaCy extension package [spaczz](https://github.com/gandersen101/spaczz) I use type hints and type check with MyPy. I was able to update my custom factory component the [SpaczzRuler](https://git…
-
While randomizing the input is a good idea, big test suits want to remain determined, so the reason of failure can be investigated properly.
In multiple places in the codebase random.choice is used, …