databricks-cli/integration/internal/main.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
417 B
Go
Raw Normal View History

package internal
import (
"testing"
)
// Main is the entry point for integration tests.
// We use this for all integration tests defined in this subtree to ensure
// they are not inadvertently executed when calling `go test ./...`.
func Main(m *testing.M) {
2025-01-02 09:04:28 +00:00
// value := os.Getenv("CLOUD_ENV")
// if value == "" {
// fmt.Println("CLOUD_ENV is not set, skipping integration tests")
// return
// }
m.Run()
}