@@ -71,6 +71,7 @@ If `--container-runtime=local` is used, the tool assumes it is already inside a
7171
7272## Triage tool logic scheme
7373
74+ ```
7475+--------------------------------+
7576| main.py |
7677| main() |
@@ -79,7 +80,6 @@ If `--container-runtime=local` is used, the tool assumes it is already inside a
7980 v
8081+--------------------------------+
8182| tool = TriageTool(args) |
82- | tool.prepare() |
8383+--------------------------------+
8484 |
8585 v
@@ -104,8 +104,7 @@ If `--container-runtime=local` is used, the tool assumes it is already inside a
104104 v
105105+------------------------------------------------+
106106| tool._gather_histories() |
107- | (Calls bisect.py -> get_commit_history) |
108- | # get the list of all the commits between p&f |
107+ | # (Calls bisect.py -> get_commit_history) |
109108+------------------------------------------------+
110109 |
111110 | <--- Inside get_commit_history()
@@ -137,7 +136,7 @@ If `--container-runtime=local` is used, the tool assumes it is already inside a
137136 | <--- Inside _build_and_test()
138137 |
139138+----------------------------------------------------------------------------+
140- | Does args.cherry_pick_commits exist? --> |
139+ | Does args.cherry_pick_commits exist? |
141140+--------------------------+-------------------------------------------------+
142141| NO | YES |
143142| (Linear History Path) | (Non-Linear History Path) |
@@ -150,6 +149,7 @@ If `--container-runtime=local` is used, the tool assumes it is already inside a
150149| - build & test | | - git cherry-pick <feature_commits> |
151150| | | - build & test |
152151+--------------------------+ +-------------------------------------------------+
152+ ```
153153
154154## Usage
155155
0 commit comments