We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9dc21d9 + fb8b600 commit 6f63bf1Copy full SHA for 6f63bf1
bench_runner/util.py
@@ -31,4 +31,8 @@ def apply_suffix(path: Path, suffix: str) -> Path:
31
@functools.cache
32
def get_excluded_benchmarks() -> set[str]:
33
conf = config.get_bench_runner_config()
34
- return set(conf.get("benchmarks", {}).get("excluded", []))
+ benchmarks_section = conf.get("benchmarks", {})
35
+ for key in ("excluded", "excluded_benchmarks"):
36
+ if key in benchmarks_section:
37
+ return set(benchmarks_section[key])
38
+ return set()
0 commit comments