-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
⚡ enhancementRequest for new functionalityRequest for new functionality
Description
If I only set tags in cucumberOptions, it can filter which scenarios match the tags will be executed.
If I only set name in cucumberOptions, it also can filter which scenarios match the name will be executed.
if I only set feature path and scenario lines, it also can filter which scenario match the line will be executed
if I both set tags and name (or scenario line), nothing will be executed with output "Test Ignored", I expected it can filter by both tags and scenario name.
Here is my cucumber options.
@CucumberOptions(strict = true,
features = {"classpath:features/F00001.feature"},
format = {"json:cuccumber.json", "pretty"},
monochrome = true,
tags = {"~@manual", "~@deprecated", "~@todo", "~@wip", "~@ignore"},
glue = { "org.some.steps" },
name = {"^Verify what I expected$"})kirillzh
Metadata
Metadata
Assignees
Labels
⚡ enhancementRequest for new functionalityRequest for new functionality