]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
suite: only skip on non-vps if os-type is actually defined
authorSage Weil <sage@inktank.com>
Fri, 23 Aug 2013 05:18:55 +0000 (22:18 -0700)
committerSage Weil <sage@inktank.com>
Fri, 23 Aug 2013 05:18:55 +0000 (22:18 -0700)
If it's not defined, as it is (not) with most of the nightlies,
proceed!

Signed-off-by: Sage Weil <sage@inktank.com>
teuthology/suite.py

index 9825dcf1816c55c18129dbf13a993aa6bee0bd90..bc30e4f8fb65a048a549a3904494e58838aaaaf8 100644 (file)
@@ -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
                          )