From f8f4c2d0e4858bbfb36ef15c8d5365539fb63c7a Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 22 Aug 2013 22:18:55 -0700 Subject: [PATCH] suite: only skip on non-vps if os-type is actually defined If it's not defined, as it is (not) with most of the nightlies, proceed! Signed-off-by: Sage Weil --- teuthology/suite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index 9825dcf1816c5..bc30e4f8fb65a 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -157,7 +157,7 @@ combination, and will override anything in the suite. # We should not run multiple tests (changing distros) unless the machine is a VPS # Re-imaging baremetal is not yet supported. if machine_type != 'vps': - if os_type != 'ubuntu': + if os_type and os_type != 'ubuntu': log.info( 'Skipping due to non-ubuntu on baremetal facets %s', description ) -- 2.39.5