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_ttk_guionly: 2 tests fail once each on Pipelines Ubuntu
Type: behavior Stage: needs patch
Components: Tests, Tkinter Versions: Python 3.11
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: epaine, serhiy.storchaka, terry.reedy, vstinner
Priority: normal Keywords:

Created on 2021-06-10 20:15 by terry.reedy, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg395567 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2021-06-10 20:15
3.10 Pipelines Ubuntu CI (like #42370) Each passed on 3.11 and 3.9 and all other CI tests and my machine.

FIRST RUN - FAIL: test_heading_callback 
(tkinter.test.test_ttk.test_widgets.TreeviewTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/vsts/work/1/s/Lib/tkinter/test/test_ttk/test_widgets.py", line 1548, in test_heading_callback
    simulate_heading_click(5, 5)
  File "/home/vsts/work/1/s/Lib/tkinter/test/test_ttk/test_widgets.py", line 1536, in simulate_heading_click
    self.assertEqual(self.tv.identify_region(x, y), 'heading')
AssertionError: 'nothing' != 'heading'
- nothing
+ heading


RETEST RUN - FAIL: test_variable_change (tkinter.test.test_ttk.test_extensions.LabeledScaleTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/vsts/work/1/s/Lib/tkinter/test/test_ttk/test_extensions.py", line 144, in test_variable_change
    self.assertGreater(x.scale.coords()[0], curr_xcoord)
AssertionError: 1 not greater than 1
History
Date User Action Args
2022-04-11 14:59:46adminsetgithub: 88550
2021-06-17 16:34:07epainesetnosy: + epaine
2021-06-10 20:15:13terry.reedycreate