Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Config ¶
type Config struct { // Configures the default test that should be executed when no parameters are specified. Default *tests.TestConfig `json:"default,omitempty"` // Tests defines repo specific test commands that can execute specific tests. Tests []SubCommand `json:"tests,omitempty"` }
Config is the defaults configuration that can be configured using the repository configuration for the test command
type SubCommand ¶
type SubCommand struct { // SubCommand defines the subcommand that should match the "/test <subCommand>" call // to trigger the configured test SubCommand string `json:"subCommand"` tests.TestConfig `json:",inline"` }
Click to show internal directories.
Click to hide internal directories.