-
-
Notifications
You must be signed in to change notification settings - Fork 32k
bpo-30822: Fix testing of datetime module. #2783
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
Only C implementation was tested.
@musically-ut, thanks for your PR! By analyzing the history of the files in this pull request, we identified @abalkin, @serhiy-storchaka and @birkenfeld to be potential reviewers. |
I'm not sure why AppVeyor thinks that this PR is |
Ok, let's retry testing Lib/datetime.py :-) |
I merged the PR. It was already approved and merged in PR #2530. I reverted the first attempt because test_datetime became too slow on some buildbots where the test timed out and so made tests failing. We agreed on http://bugs.python.org/issue30822#msg297760 to exclude the slow tzdata resource to not test all timezones in test_datetime on buildbots, but only run a few selected timezones. So I merged this new PR which is just a copy of the first one ;-) Thank you again @musically-ut, sorry for the mess ;-)
No idea. |
Please wait one or two days until all buildbots have time to run test_datetime at least once, to see if the bug is really fixed (test_datetime), before working on backports. |
I'm afraid I don't really know how to read the waterfall chart at http://buildbot.python.org/all/waterfall. Is there a guide to reading the chart or an easy way to figure out:
? It seems that |
I replied at http://bugs.python.org/issue30822#msg298786 |
…honGH-2783) Only C implementation was tested.. (cherry picked from commit 287c559)
…honGH-2783) Only C implementation was tested. (cherry picked from commit 287c559)
…honGH-2783) Only C implementation was tested.. (cherry picked from commit 287c559)
Only C implementation was being tested.
This reapplies the commit reverted in #2588. The testing of
datetime
module should not timeout on the build-bots now, thanks to #2775.