Ajout du GUI
This commit is contained in:
11
kivy/tests/__init__.py
Normal file
11
kivy/tests/__init__.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from kivy.tests.common import GraphicUnitTest, UnitTestTouch, UTMotionEvent, \
|
||||
async_run
|
||||
try:
|
||||
from kivy.tests.async_common import UnitKivyApp
|
||||
except SyntaxError:
|
||||
# async app tests would be skipped due to async_run forcing it to skip so
|
||||
# it's ok to be None as it won't be used anyway
|
||||
UnitKivyApp = None
|
||||
|
||||
__all__ = ('GraphicUnitTest', 'UnitTestTouch', 'UTMotionEvent', 'async_run',
|
||||
'UnitKivyApp')
|
||||
Reference in New Issue
Block a user