Hi

I created a ticket to see if we can get maven surefire to run in
parallel via test suites
https://issues.apache.org/jira/browse/CAMEL-11525

Help is welcome to experiment with this to try to set something up.

For a starter we can run all the org.apache.camel.processor vs
the-rest in parallel, and then later open up and do more in parallel.



On Sun, Jul 9, 2017 at 11:01 AM, Claus Ibsen <claus.ib...@gmail.com> wrote:
> Hi
>
> I have been working on speeding up our unit tests in camel-core. With
> the help of awaitility and reducing thread sleeping and other means to
> speedup the tests. For example the unit tests that consume from a file
> endpoint could be speeded up by setting the delay to be quicker
> instead of the default 1 sec initial delay etc
> https://issues.apache.org/jira/projects/CAMEL/issues/CAMEL-11446
>
>
> I found with the help of the internet and with my limited awk/sed
> skills hacked together this script to find the slow test classes
>
> grep -h "<testsuite" `find . -iname "TEST-*.xml"` | sed "s/\"//g" |
> awk '{print $5"\t\t"$4}' | sort
>
>
>
>
> --
> Claus Ibsen
> -----------------
> http://davsclaus.com @davsclaus
> Camel in Action 2: https://www.manning.com/ibsen2



-- 
Claus Ibsen
-----------------
http://davsclaus.com @davsclaus
Camel in Action 2: https://www.manning.com/ibsen2

Reply via email to