File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/lambkin/core/decorators Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1616
1717Provides the decorators used to define and configure benchmark functions:
1818
19- - @lambkin.option : registers CLI options so the @benchmark decorator can inject
20- them into "ctx.options".
21-
2219- @lambkin.benchmark : It collects CLI option definitions registered by @option,
2320 parses them once before the loop using an internal click parser, and injects
2421 the resulting values into a Context class on each (variant, iteration)
22+
23+ - @lambkin.option : registers CLI options so the @benchmark decorator can inject
24+ them into "ctx.options".
2525"""
2626
2727from .benchmark import benchmark
2828from .option import option
2929
3030__all__ = [
31- "option" ,
3231 "benchmark" ,
32+ "option" ,
3333]
You can’t perform that action at this time.
0 commit comments