Re: Use of maven.test.skip

2004-08-10 Thread Bent Andre Solheim
Hi, it is my experience that no matter how focused and fast each single test is, at some point running all of them will take too long if you build often. I agree totally with Jeffrey that it is important to make fast running focused test, but when you reach that limit when you feel you wait

Re: Use of maven.test.skip

2004-08-10 Thread Jeffrey D. Brekke
> On Tue, 10 Aug 2004 22:40:13 +0100, Charles Daniels <[EMAIL PROTECTED]> said: >> I recommend you forget that the flag exists and make the tests >> faster. > That doesn't necessarily help. If all of his tests take 0.1 second > on average, but he has 1000 tests, it still takes 100 seconds to

Re: Use of maven.test.skip

2004-08-10 Thread dan tran
t; -D > > > > > On Tue, 10 Aug 2004 22:40:13 +0100, Charles Daniels <[EMAIL PROTECTED]> wrote: > > > > > > > -Original Message- > > > From: Jeffrey D. Brekke [mailto:[EMAIL PROTECTED] > > > Sent: Tuesday, August 10, 2004 8:37

Re: Use of maven.test.skip

2004-08-10 Thread dan tran
04 8:37 PM > > To: Maven Users List > > Subject: Re: Use of maven.test.skip > > > > > > > > I recommend you forget that the flag exists and make the tests faster. > > That doesn't necessarily help. If all of his tests take 0.1 second on > average

RE: Use of maven.test.skip

2004-08-10 Thread Charles Daniels
> -Original Message- > From: Jeffrey D. Brekke [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 10, 2004 8:37 PM > To: Maven Users List > Subject: Re: Use of maven.test.skip > > > > I recommend you forget that the flag exists and make the tests faster. Th

Re: Use of maven.test.skip

2004-08-10 Thread Jeffrey D. Brekke
I recommend you forget that the flag exists and make the tests faster. > On Tue, 10 Aug 2004 13:49:06 +0100, Kenny MacLeod <[EMAIL PROTECTED]> said: > Folks, I currently have a project where the unit tests take a > considerable amount of time to run (5 minutes or so), and as a > result, runn

Re: Use of maven.test.skip

2004-08-10 Thread Jefferson K. French
Kenny, You can create simple wrapper goals like this: Then just invoke the appropriate one. Jeff On Tue, 10 Aug 2004, at 13:49:06 [GMT +0100] Kenny MacLeod wrote: > Folks, > I currently have a project where the unit tests take a considerable amount of time > t

Re: Use of maven.test.skip

2004-08-10 Thread Vlad
Hi! Maybe it help you ${systemScope.setProperty('maven.test.skip', 'true')} ${systemScope.setProperty('maven.test.skip', 'false')} Kenny MacLeod wrote: Folks, I currently have a project where the unit tests take a considerable amount of time to

Re: Use of maven.test.skip

2004-08-10 Thread Andrew Chapman
] To: [EMAIL PROTECTED] 10/08/04 13:49 cc: Please respond toSubject: Use of

RE: Use of maven.test.skip

2004-08-10 Thread Eric Pugh
How about just running maven java:compile? or, do maven mybuild -Dmaven.test.skip=true Eric > -Original Message- > From: Kenny MacLeod [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 10, 2004 2:49 PM > To: Maven Users List > Subject: Use of maven.test.skip > > >

Use of maven.test.skip

2004-08-10 Thread Kenny MacLeod
Folks, I currently have a project where the unit tests take a considerable amount of time to run (5 minutes or so), and as a result, running them every time I do a build is proving impractical. Initially, I just added the maven.test.skip flag to my project.properties, but this isn't a good sol