This repository has been archived on 2024-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
|
package reach
|
|
|
|
import "flag"
|
|
|
|
var runIntegrationTests = flag.Bool(
|
|
"integration", false,
|
|
"Run the 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",
|
|
)
|