enforcer-rules: standard vs. extra-enforcer-rules

2014-05-28 Thread Mirko Friedenhagen
Hello everybody, there is an outstanding MENFORCER-193[0] request for a new standard rule, which will allow to ban repositories. What is your opinion about adding new standard rules in enforcer vs. adding to Mojo's extra-enforcer-rules? Regards Mirko [0] https://jira.codehaus.org/browse/MENFORCER

Re: Extend surefire to rerun failing tests

2014-05-28 Thread Kristian Rosenvold
I would really like to see and understand properly how this would collaborate with JUnit rules for retries. I suspect there might be some interesting issues regarding reporting (i.e. can the existing logic handle reporting of n different executions of a single test). How does this explode i paralle

Re: Extend surefire to rerun failing tests

2014-05-28 Thread Jason van Zyl
I personally don't see an issue with those feature additions, but Kristian does the lions share of the work on the Surefire plugin so it would be his call. I would definitely support the additions of those features and would help test. On May 28, 2014, at 1:46 PM, Qingzhou Luo wrote: > Hi Jaso

Re: Extend surefire to rerun failing tests

2014-05-28 Thread Qingzhou Luo
Hi Jason, Thanks for your reply. We plan to first extend surefire, so users can put a boolean parameter rerunFailintTests and an int parameter rerunFailintTestsCount, to tell surefire whether to rerun failing tests immediately after they fail. If a test passes in any of those reruns if will be mar

[GitHub] maven-integration-testing pull request: Added guidance for setting...

2014-05-28 Thread markdingram
GitHub user markdingram opened a pull request: https://github.com/apache/maven-integration-testing/pull/5 Added guidance for setting proxy if required You can merge this pull request into a Git repository by running: $ git pull https://github.com/markdingram/maven-integration-

[GitHub] maven-integration-testing pull request: MNG-5639 a test for resolv...

2014-05-28 Thread markdingram
GitHub user markdingram opened a pull request: https://github.com/apache/maven-integration-testing/pull/4 MNG-5639 a test for resolving import scope POMs in DependencyManagement The new feature is allowing the repository URL to contain a property. You can merge this pull request int

Re: Extend surefire to rerun failing tests

2014-05-28 Thread Kristian Rosenvold
2014-05-28 14:41 GMT+02:00 Jason van Zyl : > Maybe a simple mechanism where you store the failed tests in a file and then > have a flag to run only the failed tests. I think this would be very useful. > Then possible a small, configurable loop around the main execution of tests > if you wanted

Re: Extend surefire to rerun failing tests

2014-05-28 Thread Alexander Kriegisch
I have not tried, Kristian, but it looks promising. Both your link and the randomised testing one I have forwarded to my old Scrum team (I am no longer coaching them, thus unable to access their code base and try for myself). Thank you. :-) -- Alexander Kriegisch > Am 28.05.2014 um 09:50 sch

Re: Extend surefire to rerun failing tests

2014-05-28 Thread Jason van Zyl
On May 27, 2014, at 1:14 PM, Qingzhou Luo wrote: > Hi, > > I am an intern at Google. The first step of my internship project is to add > the ability to Maven to automatically rerun failing tests a few times, to > see if they ever pass in any of the reruns. It is useful because in many > cases a

[GitHub] maven-enforcer pull request: [MENFORCER-193]: Add new rule: Banned...

2014-05-28 Thread wangyf2010
GitHub user wangyf2010 opened a pull request: https://github.com/apache/maven-enforcer/pull/13 [MENFORCER-193]: Add new rule: BannedRepositories to ban specified repos... There are use cases that need to ban specified repositories. Ex. one enterprise migrate their repositories fr

Re: Extend surefire to rerun failing tests

2014-05-28 Thread Kristian Rosenvold
Does this fit the bill for you ? http://stackoverflow.com/questions/8295100/how-to-re-run-failed-junit-tests-immediately Kristian 2014-05-28 9:14 GMT+02:00 Alexander Kriegisch : > > > -- > Alexander Kriegisch > http://scrum-master.de > > Am 28.05.2014 um 05:13 schrieb Benson Margulies : > >> On

Re: Extend surefire to rerun failing tests

2014-05-28 Thread Alexander Kriegisch
-- Alexander Kriegisch http://scrum-master.de Am 28.05.2014 um 05:13 schrieb Benson Margulies : > On Tue, May 27, 2014 at 1:14 PM, Qingzhou Luo wrote: > >> I am an intern at Google. The first step of my internship project is to add >> the ability to Maven to automatically rerun failing tests