gpt4 book ai didi

maven-2 - 有没有办法告诉surefire跳过特定程序包中的测试?

转载 作者:行者123 更新时间:2023-12-03 10:08:53 25 4
gpt4 key购买 nike

类似于以下内容。

我想要一种在surefire中跳过dao测试的方法。试图避免定义套件的开销。

有了CI,我希望每晚进行一次运行所有测试的测试,再进行一次5分钟的仅运行“快速”测试的SCM轮询。

mvn -DskipPattern=**.dao.** test

最佳答案

让我扩展肖恩的答案。这是您在pom.xml中设置的:

<properties>
<exclude.tests>nothing-to-exclude</exclude.tests>
</properties>
<profiles>
<profile>
<id>fast</id>
<properties>
<exclude.tests>**/*Dao*.java</exclude.tests>
</properties>
</profile>
</profiles>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>${exclude.tests}</exclude>
</excludes>
</configuration>
</plugin>

然后在CI中按如下方式启动它们:
mvn -Pfast test

而已。

关于maven-2 - 有没有办法告诉surefire跳过特定程序包中的测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4389744/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com