From 863c34aba7f6381f98b3518cbed5b10404dfbc53 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Wed, 27 Feb 2019 08:21:21 -0500 Subject: [PATCH] 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. --- e2e/nomad09upgrade/upgrade.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/e2e/nomad09upgrade/upgrade.go b/e2e/nomad09upgrade/upgrade.go index be37dcb5b..2610cc6df 100644 --- a/e2e/nomad09upgrade/upgrade.go +++ b/e2e/nomad09upgrade/upgrade.go @@ -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