I thought I would try out integration testing, and used the command from
the wiki:
mvn deploy -Ppackage -Pdeploy -Pjavadoc
-DaltDeploymentRepository=id::default::file:target/deploy
I thought this was for local testing, but this makes assumptions about
gpg and signing so it does nothing for me. Perhaps the wiki needs to
clarify that.
Instead, I will use:
mvn install package assembly:assembly
to build and then scp target/whirr-*-SNAPSHOT.tar.gz to my test env,
expand it, and I will try the integration tests.
Q: When running integration tests, what can I expect for machine usage
and duration?
Paul