This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_asyncio: test_call_later() fails on Windows x64 GitHub Action
Type: Stage: resolved
Components: Tests Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: miss-islington, vstinner
Priority: normal Keywords: patch

Created on 2020-12-03 12:30 by vstinner, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 23627 merged vstinner, 2020-12-03 12:34
PR 23628 merged miss-islington, 2020-12-03 12:57
PR 23629 merged miss-islington, 2020-12-03 12:57
Messages (4)
msg382404 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-12-03 12:30
FAIL: test_call_later (test.test_asyncio.test_events.SelectEventLoopTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\a\cpython\cpython\lib\test\test_asyncio\test_events.py", line 301, in test_call_later
    self.assertTrue(0.08 <= t1-t0 <= 0.8, t1-t0)
AssertionError: False is not true : 0.07799999999997453

https://github.com/python/cpython/pull/23626/checks?check_run_id=1492411421
msg382406 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2020-12-03 12:57
New changeset 7e5e13d113798117d5ef25c5ffdbd0eb39420f98 by Victor Stinner in branch 'master':
bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)
https://github.com/python/cpython/commit/7e5e13d113798117d5ef25c5ffdbd0eb39420f98
msg382410 - (view) Author: miss-islington (miss-islington) Date: 2020-12-03 13:15
New changeset 930d5377c5877a631c3c23929e2cb6211bb0e2fb by Miss Islington (bot) in branch '3.8':
bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)
https://github.com/python/cpython/commit/930d5377c5877a631c3c23929e2cb6211bb0e2fb
msg382413 - (view) Author: miss-islington (miss-islington) Date: 2020-12-03 13:20
New changeset 9f26833cedd33439b11059d423f599982abeb180 by Miss Islington (bot) in branch '3.9':
bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)
https://github.com/python/cpython/commit/9f26833cedd33439b11059d423f599982abeb180
History
Date User Action Args
2022-04-11 14:59:38adminsetgithub: 86719
2020-12-03 13:28:24vstinnersetstatus: open -> closed
stage: patch review -> resolved
resolution: fixed
versions: + Python 3.8, Python 3.9
2020-12-03 13:20:12miss-islingtonsetmessages: + msg382413
2020-12-03 13:15:36miss-islingtonsetmessages: + msg382410
2020-12-03 12:57:25miss-islingtonsetpull_requests: + pull_request22497
2020-12-03 12:57:15miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request22496
2020-12-03 12:57:05vstinnersetmessages: + msg382406
2020-12-03 12:34:59vstinnersetkeywords: + patch
stage: patch review
pull_requests: + pull_request22495
2020-12-03 12:30:02vstinnercreate