kitty/test.py
Kovid Goyal 3b2c4561c2
Dont change the env for go tests
This prevents got test caching from working greatly increasing the time
for running a test
2022-11-14 15:41:53 +05:30

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()