mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
This prevents got test caching from working greatly increasing the time for running a test
13 lines
263 B
Python
Executable file
13 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()
|