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.

Author Dennis Sweeney
Recipients Dennis Sweeney
Date 2020-05-21.22:49:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1590101382.1.0.392017281749.issue40722@roundup.psfhosted.org>
In-reply-to
Content
One of the tests (test_ttk_guionly.test_variable_change) on the Ubuntu CI is intermittently hanging on this code:

    https://github.com/python/cpython/blob/e42b705188271da108de42b55d9344642170aa2b/Lib/tkinter/test/test_ttk/test_extensions.py#L147

    def test_variable_change(self):
        x = ttk.LabeledScale(self.root)
        x.pack()
        x.wait_visibility()
        ^^^^^^^^^^^^^^^^^^^

The failure at https://github.com/python/cpython/runs/697113653 gave the logs:

    0:28:29 load avg: 0.00 [425/425/1] test_ttk_guionly crashed (Exit code 1)
    Timeout (0:20:00)!
    Thread 0x00007fa268d0c080 (most recent call first):
    File "/home/runner/work/cpython/cpython/Lib/tkinter/__init__.py", line 697 in wait_visibility
    File "/home/runner/work/cpython/cpython/Lib/tkinter/test/test_ttk/test_extensions.py", line 147 in test_variable_change
    ...

The same did not happen when I re-ran the CI checks. I thought I remembered a similar issue in the past, but I couldn't find an bpo issue about it.
History
Date User Action Args
2020-05-21 22:49:42Dennis Sweeneysetrecipients: + Dennis Sweeney
2020-05-21 22:49:42Dennis Sweeneysetmessageid: <1590101382.1.0.392017281749.issue40722@roundup.psfhosted.org>
2020-05-21 22:49:42Dennis Sweeneylinkissue40722 messages
2020-05-21 22:49:41Dennis Sweeneycreate