Open ssumitagroya opened 2 years ago
Hi,
I am using serenity 3.2.1 version for parallel execution of feature files. Earlier it was working with 2.0.90. Please refer attached pom.xml.
serenity 2.0.90 version pom.xml
<?xml version="1.0" encoding="UTF-8"?>
serenity 3.2.1 version pom.xml
Runner File
import io.cucumber.junit.CucumberOptions; import net.serenitybdd.cucumber.CucumberWithSerenity; import org.junit.runner.RunWith;
@RunWith(CucumberWithSerenity.class) @CucumberOptions( features = "classpath:features", glue = "com.abc.stepDefs", tags = "@regression" )
public class ParallelRunner { }
Can someone please help me to understand how can I fix this.
It's a known cucumber 7 issue - in Cucumber 7 parallel execution doesn't seem to work the way it's supposed to according to the Cucumber docs.
Hi,
I am using serenity 3.2.1 version for parallel execution of feature files. Earlier it was working with 2.0.90. Please refer attached pom.xml.
serenity 2.0.90 version pom.xml
<?xml version="1.0" encoding="UTF-8"?>
serenity 3.2.1 version pom.xml
<?xml version="1.0" encoding="UTF-8"?>
import io.cucumber.junit.CucumberOptions; import net.serenitybdd.cucumber.CucumberWithSerenity; import org.junit.runner.RunWith;
@RunWith(CucumberWithSerenity.class) @CucumberOptions( features = "classpath:features", glue = "com.abc.stepDefs", tags = "@regression" )
public class ParallelRunner { }
Can someone please help me to understand how can I fix this.