On Thu, Feb 20, 2014 at 10:17 AM, Matthew Moore <[email protected]> wrote: > I recently updated our pom to point to 1.551 instead of 1.521, and noticed a > massive slowdown in the execution of @JenkinsRule tests.
Use bisection to identify the particular release causing the slowdown. One possibility: the POM now requests concurrent tests, with a default concurrency of 2; on a machine with limited memory or high disk latency this could result in an overall slowdown rather than speedup. Try setting the concurrency to 1 (for example in a local profile). -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
