Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <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>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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