mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-28 09:43:37 +08:00
13 lines
400 B
Python
13 lines
400 B
Python
from vbench.api import BenchmarkRunner
|
|
from suite import *
|
|
|
|
def run_process():
|
|
runner = BenchmarkRunner(benchmarks, REPO_PATH, REPO_URL,
|
|
BUILD, DB_PATH, TMP_DIR, PREPARE,
|
|
run_option='all', start_date=START_DATE,
|
|
module_dependencies=dependencies)
|
|
runner.run()
|
|
|
|
if __name__ == '__main__':
|
|
run_process()
|