Tests are skipped.
检查 pom.xml 中是否有以下配置
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>确保 maven-surefire-plugin 未配置为跳过测试
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<skip>false</skip>
</configuration>
</plugin>