Re: Re-run only tests that failed last time

2015-03-25 Thread aRkadeFR
Great tool, thanks :) On 03/24/2015 11:22 PM, Russell Keith-Magee wrote: Hi Gergely, One option is to use a test suite GUI tool, like cricket: http://pybee.org/cricket Cricket lets you view your entire test suite as a tree, select subsets of the suite to run, see test results as the suite

Re: Re-run only tests that failed last time

2015-03-25 Thread Gergely Polonkai
Hello Carl, thanks, I will take a look at this, too! Best, Gergely On 24 March 2015 at 23:33, Carl Meyer wrote: > Hi Gergely, > > On 03/24/2015 04:27 AM, Gergely Polonkai wrote: > > I have a pretty extended test suite for my application, which can run > > for about 15

Re: Re-run only tests that failed last time

2015-03-24 Thread Carl Meyer
Hi Gergely, On 03/24/2015 04:27 AM, Gergely Polonkai wrote: > I have a pretty extended test suite for my application, which can run > for about 15 minutes. Now when I introduce an error, I will be notified > of it pretty late, and a one-liner fix needs another 15 minutes to > check. Of course if

Re: Re-run only tests that failed last time

2015-03-24 Thread Gergely Polonkai
Hello Russ, I've already installed the juno test runner, but a graphical tool cannot hurt locally  I'll check it out tomorrow, thanks for the link! Best, Gergely On 24 Mar 2015 23:22, "Russell Keith-Magee" wrote: > Hi Gergely, > > One option is to use a test suite GUI

Re: Re-run only tests that failed last time

2015-03-24 Thread Russell Keith-Magee
Hi Gergely, One option is to use a test suite GUI tool, like cricket: http://pybee.org/cricket Cricket lets you view your entire test suite as a tree, select subsets of the suite to run, see test results as the suite executes, and re-run the failures from the previous execution. Yours, Russ

Re: Re-run only tests that failed last time

2015-03-24 Thread Gergely Polonkai
@Erik: On the CI side, certainly, I will run all the tests upon each commit. I want to utilize this thing only on my developer machine, so I can do a quick run after I think I fixed a problem. Naturally, if those failing tests are green, I will run the whole suite again. Separating/tweaking my

Re: Re-run only tests that failed last time

2015-03-24 Thread Ramiro Morales
On Tue, Mar 24, 2015 at 7:27 AM, Gergely Polonkai wrote: > Hello, > > I have a pretty extended test suite for my application, which can run for > about 15 minutes. Now when I introduce an error, I will be notified of it > pretty late, and a one-liner fix needs another 15

Re: Re-run only tests that failed last time

2015-03-24 Thread Erik Cederstrand
> Den 24/03/2015 kl. 11.27 skrev Gergely Polonkai : > > I have a pretty extended test suite for my application, which can run for > about 15 minutes. Now when I introduce an error, I will be notified of it > pretty late, and a one-liner fix needs another 15 minutes to

Re: Re-run only tests that failed last time

2015-03-24 Thread Andreas Kuhne
If you have created packages for your tests, you can run all tests in a package. If the tests aren't in the same package, it won't help you however. Regards, Andréas 2015-03-24 11:27 GMT+01:00 Gergely Polonkai : > Hello, > > I have a pretty extended test suite for my

Re-run only tests that failed last time

2015-03-24 Thread Gergely Polonkai
Hello, I have a pretty extended test suite for my application, which can run for about 15 minutes. Now when I introduce an error, I will be notified of it pretty late, and a one-liner fix needs another 15 minutes to check. Of course if only one of my tests fail, I can add the name of the test