Add 'process --convert-only' option

Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>
This commit is contained in:
Christophe Bedard 2021-09-28 14:30:30 -04:00
parent 40deb51ba4
commit 87bf652760
2 changed files with 30 additions and 5 deletions

View file

@ -18,7 +18,7 @@ from tracetools_analysis.process import process
class ProcessVerb(VerbExtension):
"""Process a file converted from a trace directory and output model data."""
"""Process ROS 2 trace data and output model data."""
def add_arguments(self, parser, cli_name):
add_args(parser)
@ -28,4 +28,5 @@ class ProcessVerb(VerbExtension):
args.input_path,
args.force_conversion,
args.hide_results,
args.convert_only,
)