We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b497210 + f628f31 commit 14ccc44Copy full SHA for 14ccc44
codeflash/cli_cmds/cmd_init.py
@@ -514,7 +514,8 @@ def install_github_actions(override_formatter_check: bool = False) -> None: # n
514
from importlib.resources import files
515
516
benchmark_mode = False
517
- if "benchmarks_root" in config:
+ benchmarks_root = config.get("benchmarks_root", "").strip()
518
+ if benchmarks_root and benchmarks_root != "":
519
benchmark_mode = inquirer_wrapper(
520
inquirer.confirm,
521
message="⚡️It looks like you've configured a benchmarks_root in your config. Would you like to run the Github action in benchmark mode? "
0 commit comments