Skip to content

Commit

Permalink
Removed parallel test execution
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Sep 27, 2023
1 parent 9aff8d2 commit 577a7c5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 0 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -531,9 +531,6 @@
<exclude>**/samples/**</exclude>
<exclude>**/*Sample*</exclude>
</excludes>
<parallel>all</parallel>
<threadCount>16</threadCount>
<perCoreThreadCount>true</perCoreThreadCount>
</configuration>
</plugin>
<plugin>
Expand All @@ -553,9 +550,6 @@
<exclude>**/samples/**</exclude>
<exclude>**/*Sample*</exclude>
</excludes>
<!-- <parallel>all</parallel>-->
<!-- <threadCount>8</threadCount>-->
<!-- <perCoreThreadCount>true</perCoreThreadCount>-->
</configuration>
<executions>
<execution>
Expand Down
6 changes: 6 additions & 0 deletions serenity-screenplay/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>serenity-junit5</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
package net.serenitybdd.screenplay.actors;

import net.serenitybdd.junit5.SerenityJUnit5Extension;
import net.serenitybdd.screenplay.Actor;
import net.serenitybdd.screenplay.Question;
import org.junit.Test;
//import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;

import java.util.Map;

import static org.assertj.core.api.Assertions.assertThat;

@ExtendWith(SerenityJUnit5Extension.class)
public class WhenActorsRememberThings {

@Test
Expand Down

0 comments on commit 577a7c5

Please sign in to comment.