2018-06-28 17:29:26 +00:00
|
|
|
package e2e
|
|
|
|
|
|
|
|
import (
|
2018-07-26 03:36:33 +00:00
|
|
|
"os"
|
2018-06-28 17:29:26 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/e2e/framework"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RunE2ETests(t *testing.T) {
|
2018-07-26 03:36:33 +00:00
|
|
|
if os.Getenv("NOMAD_E2E") == "" {
|
|
|
|
t.Skip("Skipping e2e tests, NOMAD_E2E not set")
|
|
|
|
} else {
|
|
|
|
framework.Run(t)
|
|
|
|
}
|
2018-06-28 17:29:26 +00:00
|
|
|
}
|