tests: disable upgrade e2e tests

Upgrade e2e tests are failing and we haven't had bandwith to fix yet.
Having them fail makes it easy for us to miss other failures and
regressions.

As such, skip the upgrade e2e tests until we fix them.
This commit is contained in:
Mahmood Ali 2019-02-27 08:21:21 -05:00
parent 67e2a0ac05
commit bd11a4c985

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