Hi All, If I run mvn -Pall-adapters test in arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests
I get the following: [INFO] --- surefire:3.0.0-M7:test (default-test) @ arquillian-tomee-jaxrs-tests --- [INFO] Tests are skipped. [INFO] [INFO] --- groovy:2.1.1:execute (configure-adapters) @ arquillian-tomee-jaxrs-tests --- Embedded adapter activated ? true Remote webprofile adapter activated ? true Remote plus adapter activated ? true Remote plume adapter activated ? true Webapp weprofile adapter activated ? true Webapp plus adapter activated ? true Webapp plume adapter activated ? true [INFO] [INFO] --- surefire:3.0.0-M7:test (test-tomee-remote) @ arquillian-tomee-jaxrs-tests --- [INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] [INFO] Results: [INFO] [INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- surefire:3.0.0-M7:test (test-tomee-remote-secpol) @ arquillian-tomee-jaxrs-tests --- [INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] [INFO] Results: [INFO] [INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- surefire:3.0.0-M7:test (test-tomee-embedded) @ arquillian-tomee-jaxrs-tests --- [INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] [INFO] Results: [INFO] [INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- surefire:3.0.0-M7:test (test-tomee-remote-plume) @ arquillian-tomee-jaxrs-tests --- [INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] [INFO] Results: [INFO] [INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- surefire:3.0.0-M7:test (test-tomee-remote-plus) @ arquillian-tomee-jaxrs-tests --- [INFO] Using auto detected provider org.apache.maven.surefire.junitplatform.JUnitPlatformProvider [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] [INFO] Results: [INFO] [INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- surefire:3.0.0-M7:test (test-tomee-remote-microprofile) @ arquillian-tomee-jaxrs-tests --- [INFO] Tests are skipped. [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 6.395 s [INFO] Finished at: 2024-05-22T11:16:26+01:00 [INFO] ------------------------------------------------------------------------ jgallimore@jgallimore-XPS-15-9520:~/dev/tomee/arquillian/arquillian-tomee-tests/arquillian-tomee-jaxrs-tests$ So no tests are run. Plenty of tests exist, and I can run them in IntelliJ IDEA (they seem to fail). Is this expected? Do we want/need to fix this, or move the tests to another module? I ran into this as I tried to add a test (which was a test for a REST service) to this module. Thanks Jon