I build a maven project that contains only tests. These tests test a REST service running in a container on my machine. The tests run successfully on my machine with mvn test.
Now I want to build a container for my test project using Wercker. In other words: I want a container that tests a service running in another container. A simple build step like mvn test fails, for Wercker runs somewhere else and can't access my REST service on my machine.
Is it possible to make such a container that runs the tests only locally and not where Wercker makes the containers?