github.com/manicqin/nomad@v0.9.5/e2e/e2e_test.go (about) 1 package e2e 2 3 import ( 4 "testing" 5 6 _ "github.com/hashicorp/nomad/e2e/affinities" 7 _ "github.com/hashicorp/nomad/e2e/clientstate" 8 _ "github.com/hashicorp/nomad/e2e/connect" 9 _ "github.com/hashicorp/nomad/e2e/consul" 10 _ "github.com/hashicorp/nomad/e2e/consultemplate" 11 _ "github.com/hashicorp/nomad/e2e/deployment" 12 _ "github.com/hashicorp/nomad/e2e/example" 13 _ "github.com/hashicorp/nomad/e2e/hostvolumes" 14 _ "github.com/hashicorp/nomad/e2e/metrics" 15 _ "github.com/hashicorp/nomad/e2e/nomad09upgrade" 16 _ "github.com/hashicorp/nomad/e2e/nomadexec" 17 _ "github.com/hashicorp/nomad/e2e/spread" 18 _ "github.com/hashicorp/nomad/e2e/taskevents" 19 ) 20 21 func TestE2E(t *testing.T) { 22 RunE2ETests(t) 23 }