Hi
I'm trying to configure the number of threads to run via maven, however the
number of threads does not seem to be picked up. If i directly edit the
annotation in WeldAnnotatedStoryRunner, I am able to get the tests to run
with multiple threads.
Here is my configuration:
<execution>
<phase>integration-test</phase>
<configuration>
<scope>test</scope>
<ignoreFailureInStories>true</ignoreFailureInStories>
<ignoreFailureInView>false</ignoreFailureInView>
<threads>4</threads>
<includes>
<include>**/WeldAnnotatedStoryRunner.java</include>
</includes>
</configuration>
<goals>
<goal>run-stories-with-annotated-embedder</goal>
</goals>
</execution>
Is there something I am missing here?
Thanks in advance!
-Brent