Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I have the similar problem, but with IntelliJ IDEA + Maven + TestNG + spring-test. (<strong>spring-test</strong> is essential of course :) ) It was fixed when I've change config of <strong>maven-surefire-plugin</strong> to disable run tests in parallel. Like this:</p> <pre class="lang-xml prettyprint-override"><code>&lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt; &lt;version&gt;2.9&lt;/version&gt; &lt;configuration&gt; &lt;skipTests&gt;${maven.test.skip}&lt;/skipTests&gt; &lt;trimStackTrace&gt;false&lt;/trimStackTrace&gt; &lt;!--&lt;parallel&gt;methods&lt;/parallel&gt;--&gt; &lt;!-- to skip integration tests --&gt; &lt;excludes&gt; &lt;exclude&gt;**/IT*Test.java&lt;/exclude&gt; &lt;exclude&gt;**/integration/*Test.java&lt;/exclude&gt; &lt;/excludes&gt; &lt;/configuration&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;integration-test&lt;/id&gt; &lt;phase&gt;integration-test&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;test&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;skipTests&gt;${maven.integration-test.skip}&lt;/skipTests&gt; &lt;!-- Make sure to include this part, since otherwise it is excluding Integration tests --&gt; &lt;excludes&gt; &lt;exclude&gt;none&lt;/exclude&gt; &lt;/excludes&gt; &lt;includes&gt; &lt;include&gt;**/IT*Test.java&lt;/include&gt; &lt;include&gt;**/integration/*Test.java&lt;/include&gt; &lt;/includes&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload