Running in parallel #3050
DrCrunk7098
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have been trying to run in parallel with Serenity where I find that running with 1 user gives passing test but running in parallel causes a lot of test to fail. It seems to have better success when adding the dependency for serenity-cucumber6 to it, but still doesn't give the same results. Below is my pom.xml including maven-failsafe-plugin. Can someone help with what may be wrong? I referenced and tried the document and process here (https://serenity-bdd.github.io/docs/guide/cucumber) but it complains about not running with Serenity (@IncludeEngines("cucumber"). Thank you for your help in resolving this, I hope I am posting at the right place.
4.0.0
com.macys.iwm
stores-ui
1.0.0
jar
Integration
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<serenity.version>3.6.12</serenity.version>
<cucumber.version>7.8.1</cucumber.version>
<junit.jupiter.version>5.9.0</junit.jupiter.version>
<junit.vintage.version>5.9.0</junit.vintage.version>
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
<java.version>11</java.version>
<source.version>${java.version}</source.version>
<target.version>${java.version}</target.version>
<maven.surefire.plugin.version>3.0.0-M5</maven.surefire.plugin.version>
<maven.failsafe.plugin.version>3.0.0-M5</maven.failsafe.plugin.version>
<slf4j.version>2.0.5</slf4j.version>
<parallel.tests>4</parallel.tests>
ch.qos.logback
logback-classic
1.4.5
Beta Was this translation helpful? Give feedback.
All reactions