graphql-engine/cli/internal/testutil/vars.go
Kali Vara Purushotham Santhati 379b812674 cli: add e2e tests for metadata and migrate commands
Co-authored-by: Aravind K P <8335904+scriptonist@users.noreply.github.com>
GitOrigin-RevId: d63e0452fdb97a8f6c4e921467fc2a1de50639a1
2021-04-05 14:01:35 +00:00

33 lines
575 B
Go

package testutil
import (
"fmt"
"os"
"runtime"
)
// this can be overridden by ldflags
var (
HasuraVersion = "main-225403eda"
DockerSwitchIP = func() string {
switch runtime.GOOS {
case "darwin", "windows":
return "host.docker.internal"
default:
return "172.17.0.1"
}
return ""
}()
Hostname = "localhost"
BaseURL = fmt.Sprintf("http://%s", Hostname)
MSSQLPassword = "MSSQLp@ssw0rd"
SkipDockerTests = func() bool {
if len(os.Getenv("CI")) > 0 {
// skip in CI
return true
}
return false
}()
CLIBinaryPath = "hasura"
)