This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch feature/coffeescript-to-typescript
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to 
refs/heads/feature/coffeescript-to-typescript by this push:
     new 06c87a8d2 Temporary changes to figure out failing tests on Jenkins
06c87a8d2 is described below

commit 06c87a8d2c149551c2dfc9c4edb684ec3bbaf96f
Author: Thiago H. de Paula Figueiredo <thi...@arsmachina.com.br>
AuthorDate: Sat Jun 7 09:52:55 2025 -0300

    Temporary changes to figure out failing tests on Jenkins
---
 tapestry-beanvalidator/build.gradle                               | 8 ++++++--
 .../integration/TapestryBeanValidationIntegrationTests.java       | 3 +++
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/tapestry-beanvalidator/build.gradle 
b/tapestry-beanvalidator/build.gradle
index eaa51d8d4..d600a41cd 100644
--- a/tapestry-beanvalidator/build.gradle
+++ b/tapestry-beanvalidator/build.gradle
@@ -14,12 +14,16 @@ dependencies {
       exclude group: "org.testng", module: "testng"
   }
   testImplementation "org.junit.jupiter:junit-jupiter:${versions.junitJupiter}"
+  testImplementation "org.slf4j:slf4j-simple:2.0.0"
+  
 
 }
 
+// Test Logging
 test {
-    testLogging.showStandardStreams = true
-    testLogging.exceptionFormat = 'full'
+    testLogging {
+        showStandardStreams = true
+    }
 }
 
 // Start up the test app, useful when debugging failing integration tests
diff --git 
a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
 
b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
index a3587cc50..1b7826f92 100644
--- 
a/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
+++ 
b/tapestry-beanvalidator/src/test/java/org/apache/tapestry5/beanvalidator/integration/TapestryBeanValidationIntegrationTests.java
@@ -115,6 +115,9 @@ public class TapestryBeanValidationIntegrationTests extends 
SeleniumTestCase
         
         System.out.println("TTTTTTTTTTTTTTTTTTTTTTTt");
         
+        LoggerFactory.getLogger(TapestryBeanValidationIntegrationTests.class)
+            .warn("LOGLOGLOGLOGLOGLOGLOGLOGLOGLOGLOGLOG");
+
         // Ugly hack to fix the "Unable to locate element: 
//input[@type='submit']" error.
         // I have no idea why it's failing here but not in other tests and 
pages.
         // I have no idea why it's falling to begin with.

Reply via email to