mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-23 16:58:09 +02:00
Rename go module from kitty -> github.com/kovidgoyal/kitty
Makes the code more easily re-useable in other projects
This commit is contained in:
@@ -179,7 +179,7 @@ class GoProc(Thread):
|
||||
|
||||
def run_go(packages: set[str], names: str) -> GoProc:
|
||||
go = go_exe()
|
||||
go_pkg_args = [f'kitty/{x}' for x in packages]
|
||||
go_pkg_args = [f'github.com/kovidgoyal/kitty/{x}' for x in packages]
|
||||
cmd = [go, 'test', '--tags', 'testing', '-v']
|
||||
for name in names:
|
||||
cmd.extend(('-run', name))
|
||||
|
||||
Reference in New Issue
Block a user