-
Notifications
You must be signed in to change notification settings - Fork 197
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
Document parallel testing changes (fixes #342) #402
Conversation
+1 for updating the doc. |
Isn't there already a flag (useUIHarness) for UI tests that might be used here? |
UI tests usually can execute in parallel. It's more some specific tests or frameworks that require to have the window active. Bit tests can usually have other "locks", eg a DB, that can apply. |
Using that flag seems reasonable on first glance. However, you can also run SWTBot tests just to have thread-safe access to controls, without ever using the "click" features etc. Such tests would be fine. Also, I'm not a linux expert, but I would expect to be able to use different virtual screens there where parallel execution would be okay. That's why I would go for something more explicit (which would also be more easy to find in the documentation then). |
BTW: Is there some description available for how you committers generally work? Since I had no negative feedback about this PR and since it passed tests, I would now merge it. Or are self-merges of own PRs not okay? |
I would then rather not add any options here but let either
|
If you are certain that your change is small enough without getting any feedback from others you can merge it, otherwise you can always request a review on it. |
No description provided.