bench_executor

bench_executor module allows you to execute benchmark scenarios with multiple runs and automatically collect metrics.

 1#!/usr/bin/env python3
 2
 3"""
 4bench_executor module allows you to execute benchmark scenarios
 5with multiple runs and automatically collect metrics.
 6"""
 7
 8import bench_executor.logger
 9import bench_executor.collector
10import bench_executor.stats
11import bench_executor.executor
12import bench_executor.container  # noqa: F401