> @@ -128,4 +135,11 @@ protected void tearDown() {
> protected Iterable<Module> setupModules() {
> return ImmutableSet.<Module> of(getLoggingModule(), new
> SshjSshClientModule());
> }
> +
> + @Override
> + protected Properties setupProperties() {
> + Properties properties = super.setupProperties();
> + properties.setProperty("jclouds.ssh.max-retries", "10");
> + return properties;
> + }
This class should extend the `BaseComputeServiceLiveTest`. That base class
already has all the tests that must pass to properly implement the
ComputeService contract. You can take a look at the [digitalocean
one](https://github.com/jclouds/jclouds-labs/blob/master/digitalocean/src/test/java/org/jclouds/digitalocean/compute/DigitalOceanComputeServiceLiveTest.java),
as it has been the last compute provider added.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r10452884