main.go 371 B

1234567891011121314151617181920212223
  1. // License: GPLv3 Copyright: 2023, Kovid Goyal, <kovid at kovidgoyal.net>
  2. package pytest
  3. import (
  4. "fmt"
  5. "kitty/kittens/ssh"
  6. "kitty/tools/cli"
  7. "kitty/tools/utils/shm"
  8. )
  9. var _ = fmt.Print
  10. func EntryPoint(root *cli.Command) {
  11. root = root.AddSubCommand(&cli.Command{
  12. Name: "__pytest__",
  13. Hidden: true,
  14. })
  15. shm.TestEntryPoint(root)
  16. ssh.TestEntryPoint(root)
  17. }