> + > +/** > + * Profile live test > + * > + * @author Zack Shoylev > + */ > +@Test(groups = "live", testName = "ProfileApiLiveTest", singleThreaded = > true) > +@SuppressWarnings("javadoc") > +public class ClusterApiLiveTest extends BaseCloudBigDataApiLiveTest { > + > + @Override > + @BeforeClass(groups = { "integration", "live" }) > + public void setup() { > + super.setup(); > + for (String zone : api.getConfiguredZones()) { > + if(System.getProperty("test.live.region")!=null && > !zone.equals(System.getProperty("test.live.region"))){
This needs to be moved to the base test in a separate PR. And test.live.region converted to a const. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/78/files#r9447867