junit 无法在命令行上对标记运行skip Cucumber测试,获取必须以以下格式指定有效的生命周期阶段或目标< plugin-prefix >

csbfibhn  于 2022-11-11  发布在  其他
关注(0)|答案(1)|浏览(112)

我应该做什么来运行跳过Cucumber标记的命令行?我已经尝试了各种方法(https://www.programsbuzz.com/article/cucumber-skip-test-command-line),但每种方法我都得到下面的mvn命令错误。我需要为cucumber配置任何东西来运行-Dcucumber.options标志吗?请帮助

XX@DESKTOP-R87G978 MINGW64 ~/Downloads/sample/task (main)
$ mvn -Dcucumber.options="--tags '@smoke'"
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  0.367 s
[INFO] Finished at: 2022-11-06T13:25:53Z
[INFO] ------------------------------------------------------------------------
[ERROR] No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-clean, clean, post-clean, pre-site, site, post-site, site-deploy. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/NoGoalSpecifiedException

这是我的构建配置Pom.xml

<build>
    <testSourceDirectory>${project.basedir}/src/test/java/com/example/demo</testSourceDirectory>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>3.0.0-M7</version>
            <configuration>
                <includes>
                    <include>**/*Test*.java</include>
                </includes>
            </configuration>
        </plugin>
        <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>${jacoco.version}</version>
        <executions>
            <execution>
                <id>jacoco-initialize</id>
                <goals>
                    <goal>prepare-agent</goal>
                </goals>
            </execution>
            <execution>
                <id>jacoco-site</id>
                <phase>package</phase>
                <goals>
                    <goal>report</goal>
                </goals>
            </execution>
        </executions>
        </plugin>
    </plugins>
</build>

<profiles>
    <profile>
        <id>production</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>com.vaadin</groupId>
                    <artifactId>vaadin-maven-plugin</artifactId>
                    <version>${vaadin.version}</version>
                    <executions>
                        <execution>
                            <id>frontend</id>
                            <phase>compile</phase>
                            <goals>
                                <goal>prepare-frontend</goal>
                                <goal>build-frontend</goal>
                            </goals>
                            <configuration>
                                <productionMode>true</productionMode>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
bakd9h0s

bakd9h0s1#

错误信息几乎是不言自明的。虽然你已经指定了选项,但你确实忘记了设置目标或阶段,这实际上是对Maven做什么的指示。
喜欢
mvn -Dcucumber.options="--tags '@smoke'" test,其中test是相位。

相关问题