Skip to content

Commit 647bbc7

Browse files
author
Michel Samia
committed
Merge remote-tracking branch 'origin/ISS-678-use-examples' into ISS-678-use-examples
2 parents b1b6020 + 12daac1 commit 647bbc7

13 files changed

+299
-251
lines changed

.pre-commit-config.yaml

+8-3
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,20 @@ repos:
2323
- id: ruff
2424
args: ["--fix"]
2525
- id: ruff-format
26-
- repo: https://github.com/codespell-project/codespell
27-
rev: v2.4.1
26+
- repo: https://github.com/crate-ci/typos
27+
rev: v1.30.3
2828
hooks:
29-
- id: codespell
29+
- id: typos
3030
- repo: https://github.com/pycontribs/mirrors-prettier
3131
rev: "v3.5.3"
3232
hooks:
3333
- id: prettier
3434
exclude: ".all-contributorsrc"
35+
- repo: https://github.com/ComPWA/taplo-pre-commit
36+
rev: v0.9.3
37+
hooks:
38+
- id: taplo-format
39+
exclude: "uv.lock"
3540
- repo: https://github.com/pre-commit/mirrors-mypy
3641
rev: "v1.15.0"
3742
hooks:

polyfactory/factories/base.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,8 @@ def get_field_value( # noqa: C901, PLR0911, PLR0912
835835
build_context=build_context,
836836
)
837837

838-
if provider := cls.get_provider_map().get(unwrapped_annotation):
838+
provider_map = cls.get_provider_map()
839+
if provider := (provider_map.get(field_meta.annotation) or provider_map.get(unwrapped_annotation)):
839840
return provider()
840841

841842
if isinstance(unwrapped_annotation, TypeVar):
@@ -914,7 +915,10 @@ def get_field_value_coverage( # noqa: C901,PLR0912
914915

915916
yield handle_collection_type_coverage(child_meta, origin, cls, build_context=build_context)
916917

917-
elif provider := cls.get_provider_map().get(unwrapped_annotation):
918+
elif provider := (
919+
(provider_map := cls.get_provider_map()).get(field_meta.annotation)
920+
or provider_map.get(unwrapped_annotation)
921+
):
918922
yield CoverageContainerCallable(provider)
919923

920924
elif isinstance(unwrapped_annotation, TypeVar):

polyfactory/field_meta.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
import functools
34
from dataclasses import asdict
45
from typing import TYPE_CHECKING, Any, Hashable, Literal, Mapping, Pattern, TypedDict, cast
56

@@ -60,7 +61,7 @@ class Constraints(TypedDict):
6061
class FieldMeta:
6162
"""Factory field metadata container. This class is used to store the data about a field of a factory's model."""
6263

63-
__slots__ = ("annotation", "children", "constraints", "default", "name", "random")
64+
__slots__ = ("__dict__", "annotation", "children", "constraints", "default", "name", "random")
6465

6566
annotation: Any
6667
random: Random
@@ -88,15 +89,18 @@ def __init__(
8889
self.name = name
8990
self.constraints = constraints
9091

91-
@property
92+
@functools.cached_property
9293
def type_args(self) -> tuple[Any, ...]:
9394
"""Return the normalized type args of the annotation, if any.
9495
9596
:returns: a tuple of types.
9697
"""
98+
annotation = self.annotation
99+
if is_annotated(annotation):
100+
annotation = get_args(self.annotation)[0]
97101
return tuple(
98102
TYPE_MAPPING.get(arg, arg) if isinstance(arg, Hashable) else arg # pyright: ignore[reportCallIssue,reportArgumentType]
99-
for arg in get_args(self.annotation)
103+
for arg in get_args(annotation)
100104
)
101105

102106
@classmethod
@@ -140,9 +144,7 @@ def from_type(
140144
metadata = cls.get_constraints_metadata(annotation)
141145
constraints = cls.parse_constraints(metadata)
142146

143-
if annotated:
144-
annotation = get_args(annotation)[0]
145-
elif (origin := get_origin(annotation)) and origin in TYPE_MAPPING: # pragma: no cover
147+
if not annotated and (origin := get_origin(annotation)) and origin in TYPE_MAPPING:
146148
container = TYPE_MAPPING[origin]
147149
annotation = container[get_args(annotation)] # type: ignore[index]
148150

0 commit comments

Comments
 (0)