Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
906638c
enable simulated dribbled
Andrewyx Mar 10, 2026
4feea35
add tbots.py changes
StarrryNight Mar 21, 2026
1020b17
add cli params changes
StarrryNight Mar 21, 2026
d8b7d26
add module requirements
StarrryNight Mar 21, 2026
bdea7c6
fix comments and use checkboxes for thunderscope options
StarrryNight Mar 22, 2026
cb03a22
add enable realism option and fix autoref checkbox
StarrryNight Mar 24, 2026
9180b1a
Merge branch 'master' of https://github.com/UBC-Thunderbots/Software …
Andrewyx Apr 3, 2026
d479146
Merge branch 'Andrewyx/realistic_dribble' of https://github.com/Andre…
StarrryNight Apr 5, 2026
f02d3bd
directly launch command from bazel, skipping typer
StarrryNight Apr 7, 2026
22604bc
change naming of opts to config
StarrryNight Apr 7, 2026
42839cc
add record stats and enable_autogc support
StarrryNight Apr 7, 2026
485887c
fix typo
StarrryNight Apr 7, 2026
53286e2
[pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot] Apr 7, 2026
c22bf4c
Merge branch 'master' into upgrade_tbotspy
StarrryNight Apr 11, 2026
daac9be
fix appending logix
StarrryNight Apr 11, 2026
12f282c
Merge branch 'master' of github.com:UBC-Thunderbots/Software
StarrryNight Apr 11, 2026
fc90e60
Merge branch 'master' into upgrade_tbotspy
StarrryNight Apr 11, 2026
16619b7
fix record stats
StarrryNight Apr 17, 2026
afe8b64
another fix
StarrryNight Apr 17, 2026
512f9da
Add option to run test multiple times
StarrryNight Apr 18, 2026
cce9d60
[pre-commit.ci lite] apply automatic fixes
pre-commit-ci-lite[bot] Apr 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions environment_setup/macos_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ pyqt-toast-notification==1.3.2
grpcio-tools==1.71.0
platformio==6.1.18
pyqt6==6.9.1
questionary==2.1.1

1 change: 1 addition & 0 deletions environment_setup/ubuntu24_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ pyqt-toast-notification==1.3.2
md-toc==9.0.0
grpcio-tools==1.71.0
typer==0.21.0
questionary==2.1.1
9 changes: 8 additions & 1 deletion src/cli/cli_params.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from typer import Option, Argument
from enum import Enum
from typing import Annotated

from typer import Argument, Option

from cli.multi_option import MultiOption


Expand Down Expand Up @@ -90,3 +91,9 @@ class DebugBinary(str, Enum):
StopAIOnStartOption = Annotated[bool, Option("-s", "--stop_ai_on_start")]

JobsOption = Annotated[str, Option("-j", "--jobs")]
RobotName = Annotated[
str, Option("-rn", "--robot_name", help="Name of robot. E.g. balle")
]
AnsiblePlaybook = Annotated[
str, Option("-ap", "--ansible_playbook", help="Ansible playbook name")
]
Loading
Loading