MCPcopy Create free account
hub / github.com/It4innovations/hyperqueue / __init__

Method __init__

benchmarks/src/benchmark/runner.py:21–25  ·  view source on GitHub ↗
(self, database: Database, workdir: Path, exit_on_error=True)

Source from the content-addressed store, hash-verified

19
20class BenchmarkRunner:
21 def __init__(self, database: Database, workdir: Path, exit_on_error=True):
22 self.database = database
23 self.workdir = workdir.resolve()
24 self.workdir.mkdir(parents=True, exist_ok=True)
25 self.exit_on_error = exit_on_error
26
27 def materialize_and_skip(self, descriptors: List[BenchmarkDescriptor]) -> List[BenchmarkInstance]:
28 instances = create_benchmark_instances(descriptors, workdir=self.workdir)

Callers

nothing calls this directly

Calls 1

resolveMethod · 0.45

Tested by

no test coverage detected