Skip to content

Commit c4a59a5

Browse files
only benchmark relevant tests to get rid of noise
1 parent 4c44851 commit c4a59a5

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

codeflash/api/aiservice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(self) -> None:
4949
self.is_local = self.base_url == "http://localhost:8000"
5050
# (connect_timeout, read_timeout) — connect should be fast; read
5151
# can be slow because the server runs LLM inference.
52-
self.timeout: float | tuple[float, float] | None = (10, 600)
52+
self.timeout: float | tuple[float, float] | None = (10, 300)
5353

5454
def get_next_sequence(self) -> int:
5555
"""Get the next LLM call sequence number."""

codeflash/cli_cmds/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ def process_pyproject_config(args: Namespace) -> Namespace:
124124

125125
if args.tests_root is None:
126126
if is_go_project:
127+
# this is just a placeholder, in go we put generated test files in the same package as the source
127128
args.tests_root = args.module_root
128129
elif is_java_project:
129130
# Try standard Maven/Gradle test directories

0 commit comments

Comments
 (0)