Skip to content

Commit

Permalink
feat(1.5), ready
Browse files Browse the repository at this point in the history
  • Loading branch information
raceychan committed Feb 17, 2025
1 parent 0b4af8a commit 96722b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ididi/graph.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -588,13 +588,13 @@ cdef class Resolver:
node.dependencies[param.name] = param.replace_type(
inode.dependent
)
self.analyze(inode.factory)
self.analyze(inode.factory, ignore=ignore)
continue
elif is_function(param_type):
fnode = DependentNode.from_node(param_type, config=config)
self._nodes[param_type] = fnode
node.dependencies[param.name] = param.replace_type(fnode.dependent)
self.analyze(fnode.factory)
self.analyze(fnode.factory, ignore=ignore)
continue
if is_provided(param.default_):
continue
Expand Down
1 change: 0 additions & 1 deletion tests/versions/test_v1_4_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ def __init__(self, name: str, uname: Username):
assert user.name == user.uname.name == "uuu"


@pytest.mark.skip("not implemented")
def test_reuse_resolved():
dg = Graph()

Expand Down

0 comments on commit 96722b9

Please sign in to comment.