-
Notifications
You must be signed in to change notification settings - Fork 1
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
[20843] Add action to generate flaky test reports #107
Draft
EduPonz
wants to merge
20
commits into
main
Choose a base branch
from
feature/detect_flaky_tests
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EduPonz
force-pushed
the
feature/detect_flaky_tests
branch
6 times, most recently
from
June 13, 2024 10:16
3369cbb
to
976d703
Compare
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
EduPonz
force-pushed
the
feature/detect_flaky_tests
branch
from
June 14, 2024 08:54
d07a07f
to
1685099
Compare
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
EduPonz
force-pushed
the
feature/detect_flaky_tests
branch
from
June 17, 2024 12:46
1685099
to
35aaca1
Compare
…ction Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
Signed-off-by: eduponz <[email protected]>
elianalf
suggested changes
Jun 17, 2024
@@ -15,7 +16,8 @@ | |||
failures="{$numberOfFailures}" | |||
errors="{$numberOfErrors}" | |||
skipped="{$numberOfSkipped}" | |||
time="{$buildTime}"> | |||
time="{$buildTime}" | |||
timestamp="{$input_timestamp}"> | |||
<xsl:for-each select="//Site/Testing/Test"> | |||
<xsl:variable name="testName" select="translate(Name, '-', '_')"/> | |||
<xsl:variable name="duration" select="Results/NamedMeasurement[@name='Execution Time']/Value"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment is just a reminder for us: if we will have problems related to storage space of the artifacts, we may need to to create a reduced version of this .xsl file saving only the necessary information related to the test results. A possible solution is the following:
Suggested change
<xsl:variable name="duration" select="Results/NamedMeasurement[@name='Execution Time']/Value"/> | |
<xsl:variable name="duration" select="Results/NamedMeasurement[@name='Execution Time']/Value"/> | |
<xsl:variable name="status" select="@Status"/> | |
<xsl:variable name="output" select="Results/Measurement/Value"/> | |
<xsl:variable name="className" select="translate(Path, '/.', '.')"/> | |
<testcase classname="projectroot{$className}" | |
name="{$testName}" | |
status="{$status}" | |
time="{$duration}"> | |
</testcase> | |
</xsl:for-each> | |
</testsuite> | |
</testsuites> | |
</xsl:template> | |
</xsl:stylesheet> |
Signed-off-by: eduponz <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR adds a
flakiness_report
action to create flaky tests reports in nightly workflows.This stems from the original work done by @elianalf in:
TODO:
Contributor Checklist
versions.md
andREADME.md
files (if applicable).Reviewer Checklist