Jmeter maven 插件 |即使有失败,maven 构建也不会失败

Jmeter maven plugin | maven build not failing even if there are failures

我正在使用 JMeter maven 插件 2.6.0 我有一个包含一些测试的 JMeter 测试计划。

我运行 jmx 计划通过maven 构建。即使有失败,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>

根据此文档:

您的配置中缺少一个 bloc:

<execution>
   <id>jmeter-check-results</id>
   <goals>
          <goal>results</goal>
   </goals>
</execution>