mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-10 03:01:14 +03:00
3b2c4561c2
This prevents got test caching from working greatly increasing the time for running a test
14 lines
263 B
Python
Executable File
14 lines
263 B
Python
Executable File
#!./kitty/launcher/kitty +launch
|
|
# License: GPL v3 Copyright: 2016, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
import importlib
|
|
|
|
|
|
def main() -> None:
|
|
m = importlib.import_module('kitty_tests.main')
|
|
getattr(m, 'main')()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|