// License: GPLv3 Copyright: 2023, Kovid Goyal, package pytest import ( "fmt" "kitty/tools/cli" "kitty/tools/cmd/ssh" "kitty/tools/utils/shm" ) var _ = fmt.Print func EntryPoint(root *cli.Command) { root = root.AddSubCommand(&cli.Command{ Name: "__pytest__", Hidden: true, }) shm.TestEntryPoint(root) ssh.TestEntryPoint(root) }