Skip to content

Commit

Permalink
remove(display.py): the 'run' infront of all commands because that is…
Browse files Browse the repository at this point in the history
… not needed
  • Loading branch information
hemanialaparthi committed Nov 14, 2024
1 parent 7cabe89 commit e8136ca
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions execexam/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,35 +38,35 @@ def display_tldr(console: Console) -> None:

commands = {
"mark": {
"command": "run execexam <path-to-project> <path-to-tests> --mark mark_type",
"command": "execexam <path-to-project> <path-to-tests> --mark mark_type",
"description": "Run tests with specific markers.",
},
"maxfail": {
"command": "run execexam <path-to-project> <path-to-tests> --maxfail number",
"command": "execexam <path-to-project> <path-to-tests> --maxfail number",
"description": "Set maximum number of test failures before stopping test execution (default: 10)",
},
"report": {
"command": "run execexam <path-to-project> <path-to-tests> --report report_type/all",
"command": "execexam <path-to-project> <path-to-tests> --report report_type/all",
"description": "Generate the specified type(s) of reports after the exam. Use 'all' to generate all available report types.",
},
"advice-method": {
"command": " --advice-method <method> --advice-model <model> --advice-server <server>",
"command": "execexam --advice-method <method> --advice-model <model> --advice-server <server>",
"description": "Specify the LLM model and advice method to use Coding Mentor. Consult documentation for available models and methods.",
},
"debug": {
"command": "run execexam <path-to-project> <path-to-tests> --debug/--no-debug",
"command": "execexam <path-to-project> <path-to-tests> --debug/--no-debug",
"description": "Enable or disable debug mode to collect additional debugging information during execution.",
},
"fancy": {
"command": "run execexam <path-to-project> <path-to-tests> --fancy/--no-fancy",
"command": "execexam <path-to-project> <path-to-tests> --fancy/--no-fancy",
"description": "Toggle fancy output formatting. Disable for simpler output in plain-text environments.",
},
"verbose": {
"command": "run execexam <path-to-project> <path-to-tests> --verbose/--no-verbose",
"command": "execexam <path-to-project> <path-to-tests> --verbose/--no-verbose",
"description": "Enable or disable verbose output to see more detailed logs of the program's execution.",
},
"syntax-theme": {
"command": "run execexam <path-to-project> <path-to-tests> --syntax-theme theme_name",
"command": "execexam <path-to-project> <path-to-tests> --syntax-theme theme_name",
"description": "Choose syntax highlighting theme for code output (options: ansi_dark, ansi_light)",
},
}
Expand Down

0 comments on commit e8136ca

Please sign in to comment.