Should a test id have the index prefix? #5115
beraldoleal
started this conversation in
RFC
Replies: 1 comment 4 replies
-
|
It's worth revisiting the definitions of Test ID and Test Name. I believe the issue here is really not what to do with the Test ID, but where to use the Test Name instead. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Depending on the size of a suite, the same test can have different ids because we prefix the test id with the index.
Ex:
avocado run /bin/false /bin/trueandavocado run /bin/trueit will produce2-/bin/trueand1-/bin/true, respectively.Some might need to run a quick analysis over multiple job executions to find "test flakiness". However, since we are using this prefix as part of the test_id, the same test might be computed as different tests.
So,
What you think about this?
Beta Was this translation helpful? Give feedback.
All reactions