github.com/zhizhiboom/nomad@v0.8.5-0.20180907175415-f28fd3a1a056/e2e/e2e.go (about) 1 package e2e 2 3 import ( 4 "os" 5 "testing" 6 7 "github.com/hashicorp/nomad/e2e/framework" 8 ) 9 10 func RunE2ETests(t *testing.T) { 11 if os.Getenv("NOMAD_E2E") == "" { 12 t.Skip("Skipping e2e tests, NOMAD_E2E not set") 13 } else { 14 framework.Run(t) 15 } 16 }