[20843] Add action to generate flaky test reports - #107
Draft
EduPonz wants to merge 20 commits into
Draft
Conversation
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 <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
EduPonz
force-pushed
the
feature/detect_flaky_tests
branch
from
June 14, 2024 08:54
d07a07f to
1685099
Compare
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
EduPonz
force-pushed
the
feature/detect_flaky_tests
branch
from
June 17, 2024 12:46
1685099 to
35aaca1
Compare
…ction Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
Signed-off-by: eduponz <eduardoponz@eprosima.com>
elianalf
suggested changes
Jun 17, 2024
| 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.
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 <eduardoponz@eprosima.com>
This file contains hidden or 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
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_reportaction to create flaky tests reports in nightly workflows.This stems from the original work done by @elianalf in:
TODO:
Contributor Checklist
versions.mdandREADME.mdfiles (if applicable).Reviewer Checklist