Cobertura on Jenkins 重复测试运行
Cobertura on Jenkins Duplicate Test Runs
我的构建包含 cobertura 作为我的 Jenkins 的一部分 运行。但是,我现在意识到它 运行 对我的所有测试进行了两次测试。
我在 Jenkins 中将项目设置为 Maven 项目。我的目标 运行 设置为:clean coberture:cobertura install
我原以为命令的 install
部分会简单地 运行 安装目标的其余部分,例如 package.然而,它重新运行s 编译和所有测试。尽管事实上那里已经有测试了。
我已经尝试配置预构建和 post 构建步骤的不同组合,但我一直 运行 遇到问题。在某些组合中,构建工件(例如 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>
我能想到的最佳方法是在 Jenkins 中使用 "Freestyle" 项目。
我使项目 运行 有两个单独的 maven 命令。 mvn clean cobertura:cobertura 和 mvn install -Dmaven.test.skip=true
这可以防止测试 运行ning 两次。
如果您不想 运行 您的测试两次,请使用 qualinsight-mojo-cobertura maven 插件而不是 cobertura-maven-plugin。
我的构建包含 cobertura 作为我的 Jenkins 的一部分 运行。但是,我现在意识到它 运行 对我的所有测试进行了两次测试。
我在 Jenkins 中将项目设置为 Maven 项目。我的目标 运行 设置为:clean coberture:cobertura install
我原以为命令的 install
部分会简单地 运行 安装目标的其余部分,例如 package.然而,它重新运行s 编译和所有测试。尽管事实上那里已经有测试了。
我已经尝试配置预构建和 post 构建步骤的不同组合,但我一直 运行 遇到问题。在某些组合中,构建工件(例如 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>
我能想到的最佳方法是在 Jenkins 中使用 "Freestyle" 项目。
我使项目 运行 有两个单独的 maven 命令。 mvn clean cobertura:cobertura 和 mvn install -Dmaven.test.skip=true
这可以防止测试 运行ning 两次。
如果您不想 运行 您的测试两次,请使用 qualinsight-mojo-cobertura maven 插件而不是 cobertura-maven-plugin。