Selaa lähdekoodia

tests: Don't fail Dial test if tkinter failed to import

rdb 1 vuosi sitten
vanhempi
sitoutus
a8ca06ea47
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      tests/tkwidgets/test_Dial.py

+ 1 - 1
tests/tkwidgets/test_Dial.py

@@ -1,5 +1,5 @@
-import tkinter as tk
 import pytest
+tk = pytest.importorskip('tkinter')
 pytest.importorskip('Pmw')
 from direct.tkwidgets.Dial import Dial