Skip to content

Commit 1dcd518

Browse files
committed
Remove visualizing c++ test flags from thunderscope and tbots.py
1 parent fae88e9 commit 1dcd518

3 files changed

Lines changed: 0 additions & 11 deletions

File tree

src/cli/cli_params.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ class DebugBinary(str, Enum):
8686
]
8787

8888
EnableThunderscopeOption = Annotated[bool, Option("-t", "--enable_thunderscope")]
89-
EnableVisualizerOption = Annotated[bool, Option("-v", "--enable_visualizer")]
9089
StopAIOnStartOption = Annotated[bool, Option("-s", "--stop_ai_on_start")]
9190

9291
JobsOption = Annotated[str, Option("-j", "--jobs")]

src/software/thunderscope/thunderscope_main.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,6 @@
9999
default=False,
100100
help="Debug the simulator",
101101
)
102-
parser.add_argument(
103-
"--visualize_cpp_test",
104-
action="store_true",
105-
default=False,
106-
help="Visualize C++ Tests",
107-
)
108102
parser.add_argument(
109103
"--log_level",
110104
action="store",

src/tbots.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
InteractiveModeOption,
2020
TracyOption,
2121
EnableThunderscopeOption,
22-
EnableVisualizerOption,
2322
StopAIOnStartOption,
2423
SearchQueryArgument,
2524
TestSuiteOption,
@@ -109,7 +108,6 @@ def main(
109108
interactive_search: InteractiveModeOption = False,
110109
tracy: TracyOption = False,
111110
enable_thunderscope: EnableThunderscopeOption = False,
112-
enable_visualizer: EnableVisualizerOption = False,
113111
stop_ai_on_start: StopAIOnStartOption = False,
114112
test_suite: TestSuiteOption = False,
115113
jobs_option: JobsOption = "",
@@ -182,8 +180,6 @@ def main(
182180
bazel_arguments = unknown_args
183181
if stop_ai_on_start:
184182
bazel_arguments += ["--stop_ai_on_start"]
185-
if enable_visualizer:
186-
bazel_arguments += ["--enable_visualizer"]
187183
if enable_thunderscope:
188184
bazel_arguments += ["--enable_thunderscope"]
189185
if flash_robots:

0 commit comments

Comments
 (0)