clebertsuconic commented on code in PR #4551:
URL: https://github.com/apache/activemq-artemis/pull/4551#discussion_r1261314980


##########
tests/compatibility-tests/src/test/java/org/apache/activemq/artemis/tests/compatibility/base/ClasspathBase.java:
##########
@@ -181,7 +179,15 @@ protected ClassLoader getClasspath(String name, boolean 
forceNew) throws Excepti
          classPathValue = buffer.toString();
       }
 
-      Assert.assertTrue("Cannot run compatibility tests, no classpath found on 
./target/" + name + ".cp", classPathValue != null && 
!classPathValue.trim().equals(""));
+      boolean foundClassPath = classPathValue != null && 
!classPathValue.trim().equals("");
+
+      if (!foundClassPath) {
+         logger.info("Rebuild project with -Pcompatibility-tests. Cannot find 
classpath definition for {}", name);
+      }
+
+      Assume.assumeTrue("Rebuild project with -Pcompatibility-tests.", 
foundClassPath);
+
+      Assume.assumeTrue("Rebuild project with -Pcompatibility-tests to be able 
to run this test. No classpath found on ./target/" + name + ".cp", 
foundClassPath);

Review Comment:
   tests are not running if I just do:
   
   mvn -Pcompatibility-tests from ./tests/compatibility-tests
   
   
   I'm fixing 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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to