We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently only one metric is associated with an executable in the Validation list.
An executable may generate more than one metric, it should be possible to register them on the right entry rather than creating fake entries.
today :
(...) Validations: - id: metric-1 type: configuration_independent reference : 100 tolerance: 0.03 executable: actual_executable - id: "metric-2" reference: 88.3 type: configuration_independent tolerance: 0.1 executable: true # noop executable since the metric is generated with previous validation.
wanted :
(...) Validations: executable : actual_executable metrics : - {id : metric-1, reference : 100, type : configuration_independent, tolerance: 0.03} - {id : metric-2, reference : 88,3, type : configuration_independent, tolerance: 0.01}
Previous syntax for validation with only one metric will still be valid.
The text was updated successfully, but these errors were encountered:
Validations can now contain multiple metrics (see #20)
de348a4
35a56ad
No branches or pull requests
Currently only one metric is associated with an executable in the Validation list.
An executable may generate more than one metric, it should be possible to register them on the right entry rather than creating fake entries.
today :
wanted :
Previous syntax for validation with only one metric will still be valid.
TODO
The text was updated successfully, but these errors were encountered: