Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions itbench_tools/bench_runner/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import logging

import itbench_tools.agent_harness.agent
import itbench_tools.app.runner
import itbench_tools.bench_runner.runner
from itbench_tools.app.config import (
DEFAULT_MINIBENCH_HOST,
DEFAULT_MINIBENCH_PORT,
Expand Down Expand Up @@ -75,7 +75,7 @@ def main():
log.init()

if args.command == 'runner':
itbench_tools.app.runner.run(args)
itbench_tools.bench_runner.runner.run(args)


if __name__ == "__main__":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
BenchmarkJobTake,
)
from itbench_tools.app.models.bundle import Bundle as BundleInApp
from itbench_tools.app.runner_utils import (
from itbench_tools.bench_runner.utils import (
build_benchmark_run_config,
get_specific_log_file_path,
setup_request_logger,
Expand Down
File renamed without changes.