我有一个包含cobertura的构建,作为我Jenkins运行的一部分。但是,我现在意识到它正在运行我的所有测试两次。
我将项目设置为Jenkins的Maven项目。我的目标是设置为:clean coberture:cobertura install
我原以为命令的install
部分只会运行安装目标的其余部分,例如包。但是,它重新编译了编译和所有测试。尽管事实上已经有了测试。
我已尝试配置预构建和后构建步骤的不同组合,但我一直遇到问题。在某些组合中,构建工件(如jar)永远不会在Jenkins上发布。在其他情况下,测试结果丢失。
我认为也许我需要将构建重新构建为shell构建。我想我可以运行命令:mvn clean cobertura:cobertura && mvn install -Dmaven.test.skip=true
我认为这会做我想要的。它至少会停止运行所有测试两次。
这是最好的方法还是有另一种方式?
这就是我在我的POM中包括Cobertura的方式:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.foo.bar</groupId>
<artifactId>my-parent</artifactId>
<version>1.2.1</version>
</parent>
<groupId>com.foo.bar.baz</groupId>
<artifactId>osom</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<description>TODO</description>
<modules>
<module>module1</module>
<module>module2</module>
<module>module3</module>
</modules>
<dependencies>
</dependencies>
<build>
<!-- To define the plugin version in your parent POM -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.3</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18</version>
<configuration>
<useUnlimitedThreads>true</useUnlimitedThreads>
<parallel>suites</parallel>
<reuseForks>false</reuseForks>
<includes>
<include>**/*Test.java</include>
<include>**/Test*.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<!-- use mvn cobertura:cobertura to generate cobertura reports -->
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<aggregate>true</aggregate>
<format>xml</format>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
答案 0 :(得分:1)
我能想出的最佳方法是在詹金斯使用“Freestyle”项目。
我让项目运行了两个单独的maven命令。 mvn clean cobertura:cobertura和mvn install -Dmaven.test.skip = true
这可以防止测试运行两次。
答案 1 :(得分:1)
如果您不想两次运行测试,请使用qualinsight-mojo-cobertura maven插件而不是cobertura-maven-plugin。