Skip to content
New issue

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

feat(tests): add md5 and last computed to testResult model #11117

Merged
11 changes: 11 additions & 0 deletions metadata-models/src/main/pegasus/com/linkedin/test/TestResult.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,15 @@ record TestResult {
*/
FAILURE
}

/**
* The md5 of the test definition that was used to compute this result.
* See TestInfo.testDefinition.md5 for more information.
*/
testDefinitionMd5: optional string

/**
* The audit stamp of when the result was computed, including the actor who computed it.
*/
lastComputed: optional AuditStamp
}
Loading