wouldn't that cause the tests to never fail the build?
I think what he wants is to be able to easily switch the tests off.

I do this myself when I'm working on UI stuff that the tests don't
check and I don't want to have to run though all the tests simply to
deploy a new HTML file.


- Brill Pappin

On 12/10/05, Arnaud Bailly <[EMAIL PROTECTED]> wrote:
> Hi,
> In Maven2, this is done by configuring the surefire plugin:
>
>   <build>
>    <pluginManagement>
>     <plugins>
>      <plugin>
>       <groupId>org.apache.maven.plugins</groupId>
>       <artifactId>maven-surefire-plugin</artifactId>
>       <configuration>
>        <testFailureIgnore>true</testFailureIgnore>
>       </configuration>
>      </plugin>
>     </plugins>
>    </pluginManagement>
>   </build>
>
> Hope it helps.
>
> --
> Arnaud Bailly - Ingénieur de Recherche
> NORSYS
> 1, rue de la Cense des Raines
> ZAC du Moulin
> 59710 ENNEVELIN
> Tel : (33) 3 28 76 56 76
> Fax : (33) 3 28 76 57 00
> Web : http://www.norsys.fr
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to