-
-
Notifications
You must be signed in to change notification settings - Fork 31.8k
Add a --rerun option to the iOS testbed. #122992
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
Conversation
!buildbot iOS |
🤖 New build scheduled with the buildbot fleet by @freakboy3742 for commit f9cca3e 🤖 The command will test the builders whose names match following regular expression: The builders matched are:
|
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.
A good option to use
Thanks @freakboy3742 for the PR 🌮🎉.. I'm working now to backport this PR to: 3.13. |
Enable --rerun when running tests on iOS. (cherry picked from commit ce39d3c) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
GH-122993 is a backport of this pull request to the 3.13 branch. |
|
Oops, it looks like regrtest by default uses a subprocess for the reruns. https://buildbot.python.org/#builders/1380/builds/1068 |
Whelp... I guess we need |
It would be a RM call; to me, backporting a feature in the release candidate phase of 3.13 seems a stretch. Possibly in a maintenance release. But I think the right thing to do now is to live without it for 3.13.0. It does look like there is some useful info in the buildbot traceback: |
Makes sense. I've opened #122994 to add the |
Looks like the |
|
These errors may be related to the recent OS upgrade on the PSF pythontest.net test server. |
I had been planning to use |
Enable --rerun when running tests on iOS.
Thanks @freakboy3742 for the PR 🌮🎉.. I'm working now to backport this PR to: 3.13. |
Enable --rerun when running tests on iOS. (cherry picked from commit ce39d3c) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
GH-123367 is a backport of this pull request to the 3.13 branch. |
Adds a
--rerun
option to the iOS testbed runner.We've seen a small number of transient failures in the iOS buildbot - mostly in socket-related tests, due to socket availability. These tests pass on the next test, and can't be easily reproduced. The test runner has a
--rerun
option that may help with the resilience of these tests, and is enabled in the--slow/fast-ci
configurations; this PR enables that option for the iOS test runner.