> @@ -108,6 +108,12 @@ > <artifactId>maven-surefire-plugin</artifactId> > <executions> > <execution> > + <id>default-test</id> > + <configuration> > + <skipTests>true</skipTests> > + </configuration> > + </execution> > + <execution>
Ahh...this is only for the _live_ profile. So if you run `mvn integration-test` you'd get the unit tests followed later by the integration tests, but if you run `mvn integration-test -Plive` you'd only get the live integration tests? In that case, fine! Thanks for explaining. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/37/files#r15676518
