I've added the following to <build><plugins>:
     <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-surefire-plugin</artifactId>
       <executions>
         <execution>
           <phase>integration-test</phase>
           <goals>
             <goal>test</goal>
           </goals>
         </execution>
       </executions>
     </plugin>

This results in my tests being executed during the integration-test
phase, which is great. The problem is that they are still being run
during the test phase (before the database schema has been deployed)

How do I prevent my integration tests being run during the test phase?

 Thanks

   Donnchadh

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to