Merge pull request #5364 from hashicorp/disable-failing-e2e-tests

tests: disable upgrade e2e tests
This commit is contained in:
Nick Ethier
2019-02-28 14:02:27 -05:00
committed by GitHub

View File

@@ -187,6 +187,11 @@ func (n *nomadAgent) Nomad() (*api.Client, error) {
// BeforeAll downloads all of the desired nomad versions to test against
func (tc *UpgradePathTC) BeforeAll(f *framework.F) {
// Upgrade tests currently fail because the nomad binary isn't found by
// discover.NomadExecutable(). Ensure that nomad binary is available
// and discoverable and enable this test
f.T().Skip("upgrade tests are expected to fail. TODO: Fix")
bin, err := discover.NomadExecutable()
f.NoError(err)
tc.bin = bin