Skip to content

Commit 92ecdc7

Browse files
committed
likely an issue with setup
1 parent 68e5091 commit 92ecdc7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/codeflash-optimize.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ jobs:
6868
id: optimize_code
6969
run: |
7070
source .venv/bin/activate
71-
poetry run codeflash
71+
poetry run codeflash --benchmark

codeflash/cli_cmds/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ def process_pyproject_config(args: Namespace) -> Namespace:
167167
# in this case, the ".." becomes outside project scope, causing issues with un-importable paths
168168
args.project_root = project_root_from_module_root(args.module_root, pyproject_file_path)
169169
args.tests_root = Path(args.tests_root).resolve()
170+
args.benchmarks_root = Path(args.benchmarks_root).resolve()
170171
args.test_project_root = project_root_from_module_root(args.tests_root, pyproject_file_path)
171172
return handle_optimize_all_arg_parsing(args)
172173

0 commit comments

Comments
 (0)