orion/reach/test.go

19 lines
452 B
Go
Raw Normal View History

2018-09-19 15:29:44 +02:00
package reach
import "flag"
var runUpdaterIntegrationTests = flag.Bool(
"updater-integration", false,
"Run the 'Updater' integration tests (in addition to the unit tests)",
2018-09-19 15:29:44 +02:00
)
2018-09-20 17:28:18 +02:00
var runReachViewIntegrationTests = flag.Bool(
"reachview-integration", false,
"Run the 'ReachView' integration tests (in addition to the unit tests)",
)
2018-09-19 15:29:44 +02:00
var reachHost = flag.String(
"reach-host", "192.168.42.1",
"The Reach module host to use in integration tests",
)