我正在尝试使用maven和以下命令运行黄瓜测试
mvn test -Dcucumber.options="--tag @debug1"
这个命令工作正常,但如果我尝试下面这样的事情,我会得到错误
mvn test -Dcucumber.options="--tag @debug1 @debug2"
有没有办法用黄瓜运行时选项传递多个标签名称?
使用@debug1
和运行方案@debug2
:
mvn test -Dcucumber.options="--tags @debug1 --tags @debug2"
使用@debug1
或运行方案@debug2
:
mvn test -Dcucumber.options="--tags @debug1,@debug2"