Currently, reprospec replay parses --profile to select standard resource limits (minimal, standard, extended).
We need to investigate and define the optimal precedence model when users wish to override individual metrics (e.g. timeout, memory size) directly.
For example, if a user specifies:
reprospec.config.json defining standard limits.
- A profile selection
--profile extended defining 4GB memory.
- A potential CLI override
--memory 512m.
We need to:
- Decide the precedence hierarchy.
- Propose the command line schema for individual overrides.
- Implement test cases in
tests/replay.test.js validating the agreed-upon precedence order.
Currently,
reprospec replayparses--profileto select standard resource limits (minimal, standard, extended).We need to investigate and define the optimal precedence model when users wish to override individual metrics (e.g. timeout, memory size) directly.
For example, if a user specifies:
reprospec.config.jsondefining standard limits.--profile extendeddefining 4GB memory.--memory 512m.We need to:
tests/replay.test.jsvalidating the agreed-upon precedence order.