mirror of https://github.com/databricks/cli.git
14 lines
276 B
Go
14 lines
276 B
Go
|
package bundle_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/databricks/cli/integration/internal"
|
||
|
)
|
||
|
|
||
|
// TestMain is the entrypoint executed by the test runner.
|
||
|
// See [internal.Main] for prerequisites for running integration tests.
|
||
|
func TestMain(m *testing.M) {
|
||
|
internal.Main(m)
|
||
|
}
|