Skip to content

Commit

Permalink
tkinter.tix was removed from Python 3.13, skip the test (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
hroncok authored Oct 21, 2023
1 parent 3b7efbc commit 02c3bca
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test_six.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ def test_move_items(item_name):
if item_name.startswith("tkinter"):
if not have_tkinter:
pytest.skip("requires tkinter")
if item_name == "tkinter_tix" and sys.version_info >= (3, 13):
pytest.skip("tkinter.tix removed from Python 3.13")
if item_name == "dbm_gnu" and not have_gdbm:
pytest.skip("requires gdbm")
if item_name == "dbm_ndbm":
Expand Down

0 comments on commit 02c3bca

Please sign in to comment.