-
Notifications
You must be signed in to change notification settings - Fork 63
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
Avoid using test groups for test ordering #649
Conversation
Test groups are global, not just for single test. This means that multiple test classes may be "in progress" at the same time, which leads to issues in at least one implementation which has global state. Instead of test groups and `dependsOnGroups`, this commit uses simple `dependsOnMethods`, which is local to the test class.
I'd love this to be released in 4.1.1, which should be OK I think? |
Can one of the admins verify this patch? |
I can confirm that I can see the same behaviour running on OpenLiberty - the chronological results view shows the |
@eclipse-microprofile-bot test this please |
Bump, any updates here? |
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.
LGTM
Sorry for the delay! Merged |
Thanks! |
Can we please get a MP FT 4.1.1 release with this? The |
Test groups are global, not just for single test. This means that multiple test classes may be "in progress" at the same time, which leads to issues in at least one implementation which has global state.
Instead of test groups and
dependsOnGroups
, this commit uses simpledependsOnMethods
, which is local to the test class.