Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


gnodet merged PR #14144:
URL: https://github.com/apache/camel/pull/14144


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


orpiske commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600285708


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   @gnodet I am fine with the current approach ... it will be great to have 
this flag working! Let's go ahead and merge it. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


gnodet commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600267343


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   @orpiske I don' really mind the default value, but I need the rerun to 
happen in GitHub.  So if you prefer, I can revert the default value to 0 but 
keep it in the properties.  Or just remove the line. It will have the same 
effect.
   Or use a `camel.surefire.rerunFailingTestsCount` as we have for some other 
properties... but that will need to adjust all the scripts / GitHub actions.
   If you're fine with the current state, I can simply merge :-)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


gnodet commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600227218


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   > BTW, it may be necessary to do the same in a few more places (and also for 
the failsafe plugin). I looked briefly at the code and there's a few more 
places where this is set.
   > 
   > Good catch!!!
   
   FWIW, the `rerunFailingTestsCount` is not explicitely set in the failsafe 
plugin config, so that one is not a problem and the 
`failsafe.rerunFailingTestsCount` system property should be honored.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


gnodet commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600210518


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   > @gnodet oh, so you mean this one is overriding the property we set 
manually? OMG.
   
   Yes, the properties used as default values for plugin configs are... 
defaults ;-)
   So if the plugin configuration specifically sets a value, the property won't 
be used.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


orpiske commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600200462


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   BTW, it may be necessary to do the same in a few more places (and also for 
the failsafe plugin). I looked briefly at the code and there's a few more 
places where this is set. 
   
   Good catch!!!



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


orpiske commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600196400


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   @gnodet oh, so you mean this one is overriding the property we set manually? 
OMG. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


gnodet commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600191069


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   I don't think the `surefire.rerunFailingTestsCount` system property is used, 
because the plugin has a specific configuration set to 0 and the property is 
only used as a default.
   
   If we want the system property to take precedence, we need to remove the 
line or use something like:
   ```
   
${surefire.rerunFailingTestsCount}
   ```
   and eventually define it with a default value:
   ```
   
 2
   
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


gnodet commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600178103


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   @orpiske I don't see tests being rerun in the following failed builds 
however: 
https://github.com/apache/camel/actions/runs/8925211751/job/24513370969?pr=14042



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


gnodet commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600178103


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   I don't see tests being rerun in the following failed builds however: 
https://github.com/apache/camel/actions/runs/8925211751/job/24513370969?pr=14042



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


orpiske commented on code in PR #14144:
URL: https://github.com/apache/camel/pull/14144#discussion_r1600116679


##
parent/pom.xml:
##
@@ -3535,8 +3535,8 @@
 false
 
false
 alphabetical
-
-0
+
+2

Review Comment:
   Just for the record: both GH actions and ASF already do this by default (2 
for unit tests and 1 for integration tests).



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


github-actions[bot] commented on PR #14144:
URL: https://github.com/apache/camel/pull/14144#issuecomment-2110198894

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Rerun failing tests [camel]

2024-05-14 Thread via GitHub


gnodet opened a new pull request, #14144:
URL: https://github.com/apache/camel/pull/14144

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org