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.
1 parent e220159 commit ee15d8cCopy full SHA for ee15d8c
codeflash/cli_cmds/cli.py
@@ -167,7 +167,8 @@ def process_pyproject_config(args: Namespace) -> Namespace:
167
# in this case, the ".." becomes outside project scope, causing issues with un-importable paths
168
args.project_root = project_root_from_module_root(args.module_root, pyproject_file_path)
169
args.tests_root = Path(args.tests_root).resolve()
170
- args.benchmarks_root = Path(args.benchmarks_root).resolve()
+ if args.benchmarks_root:
171
+ args.benchmarks_root = Path(args.benchmarks_root).resolve()
172
args.test_project_root = project_root_from_module_root(args.tests_root, pyproject_file_path)
173
return handle_optimize_all_arg_parsing(args)
174
0 commit comments