如果测试阶段,则执行 maven-easyb 插件作为集成阶段的一部分



是否可以在集成阶段而不是测试阶段执行maven-easyb-plugin?我想在项目部署到网络服务器后运行 easyb 测试。

                 <plugin>
                    <groupId>org.easyb</groupId>
                    <artifactId>maven-easyb-plugin</artifactId>
                    <version>1.4</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>test</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <storyType>html</storyType>
                        <storyReport>target/easyb/easyb.html</storyReport>
                        <easybTestDirectory>src/test/stories</easybTestDirectory>
                        <jvmArguments>-Xmx512m -Dwebdriver.driver=firefox</jvmArguments>
                    </configuration>
                </plugin>

在您的特定情况下,它将是:

<execution>
    <phase>integration-test</phase>
    <goals>
        <goal>test</goal>
    </goals>
</execution>

在您的插件配置中。

相关内容

  • 没有找到相关文章

最新更新