关于api:空手道功能自动化和性能脚本同时运行

Karate [Functional Automation and Performance Scripts are running in simultaneously

这里有没有人体验过使用 Karate-Gatling 更新功能自动化项目的 POM 以便能够重复使用功能脚本来提高性能,但是在执行时会触发两个测试?

1
mvn test"-Dkarate.env=dev" -Dkarate.options="--tags @FunctionalScript classpath:services/project/functional.feature" -Dtest=TestRunner

上面的 mvn 应该只运行功能自动化脚本,但性能脚本也会在此之后立即触发。

提前致谢!


这取决于您如何设置 maven 项目。如果您的 gatling 插件设置中有以下代码段,请将其删除:

1
2
3
4
5
6
7
8
  <executions>
      <execution>
          <phase>test</phase>
          <goals>
              <goal>test</goal>
          </goals>
      </execution>
  </executions>

这里详细解释:https://github.com/intuit/karate/tree/develop/karate-gatling#maven