This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/lab/bazel/dep_graph_explorer/core/graph_algorithms.py b/lab/bazel/dep_graph_explorer/core/graph_algorithms.py | |
| index 8ae63c7c18ab..4b4623b4fc28 100644 | |
| --- a/lab/bazel/dep_graph_explorer/core/graph_algorithms.py | |
| +++ b/lab/bazel/dep_graph_explorer/core/graph_algorithms.py | |
| @@ -123,21 +123,31 @@ def full_rdeps_tests( | |
| G_rev: nx.DiGraph, | |
| rev_nodes: frozenset[str], | |
| valid_tests: frozenset[str], | |
| + max_depth: int | None = None, | |
| ) -> set[str]: |