14 lines
294 B
Go
14 lines
294 B
Go
|
package common
|
||
|
|
||
|
import "flag"
|
||
|
|
||
|
var runCommonIntegrationTests = flag.Bool(
|
||
|
"common-integration", false,
|
||
|
"Run the 'Common' integration tests (in addition to the unit tests)",
|
||
|
)
|
||
|
|
||
|
var reachHost = flag.String(
|
||
|
"reach-host", "192.168.42.1",
|
||
|
"The Reach module host to use in integration tests",
|
||
|
)
|