我正在使用JMeter maven插件2.6.0我有一个JMeter测试计划,其中包含一些测试。
我正在通过maven build运行jmx计划。即使有失败,maven构建也不会失败。
我希望maven构建失败。我在jmeter maven插件配置中使用false。
配置我的pom.xml是这样的:
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-maven-plugin</artifactId>
<version>2.6.0</version>
<executions>
<execution>
<id>test</id>
<phase>verify</phase>
<goals>
<goal>jmeter</goal>
</goals>
</execution>
</executions>
<configuration>
<resultsFileFormat>jtl</resultsFileFormat> <resultsFileNameDateFormat>YYYY</resultsFileNameDateFormat>
<ignoreResultFailures>false</ignoreResultFailures>
</configuration>
</plugin>
答案 0 :(得分:1)
根据这份文件:
您的配置中缺少一个集团:
<execution>
<id>jmeter-check-results</id>
<goals>
<goal>results</goal>
</goals>
</execution>