open-nomad/e2e/e2e_test.go

24 lines
687 B
Go
Raw Normal View History

package e2e
import (
"testing"
2018-12-19 00:39:45 +00:00
_ "github.com/hashicorp/nomad/e2e/affinities"
_ "github.com/hashicorp/nomad/e2e/clientstate"
2019-09-03 22:46:03 +00:00
_ "github.com/hashicorp/nomad/e2e/connect"
2019-01-26 05:06:50 +00:00
_ "github.com/hashicorp/nomad/e2e/consul"
_ "github.com/hashicorp/nomad/e2e/consultemplate"
_ "github.com/hashicorp/nomad/e2e/deployment"
_ "github.com/hashicorp/nomad/e2e/example"
2019-09-17 18:45:00 +00:00
_ "github.com/hashicorp/nomad/e2e/hostvolumes"
_ "github.com/hashicorp/nomad/e2e/metrics"
_ "github.com/hashicorp/nomad/e2e/nomad09upgrade"
2019-04-28 21:35:42 +00:00
_ "github.com/hashicorp/nomad/e2e/nomadexec"
2018-12-17 20:39:14 +00:00
_ "github.com/hashicorp/nomad/e2e/spread"
2019-01-04 23:19:00 +00:00
_ "github.com/hashicorp/nomad/e2e/taskevents"
)
func TestE2E(t *testing.T) {
RunE2ETests(t)
}