Ajout du GUI

This commit is contained in:
thatscringebro
2022-08-08 16:31:52 -04:00
parent db362ccdca
commit abd15f28b6
851 changed files with 99957 additions and 1 deletions

11
kivy/tests/__init__.py Normal file
View 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')