Skip to content

Commit

Permalink
#2716: using slow annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
levBagryansky committed Mar 7, 2024
1 parent a2be0ac commit 5ef4e52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion eo-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,6 @@ SOFTWARE.
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludedGroups>slow</excludedGroups>
<argLine>@{argLine} -Xss${stack-size}</argLine>
<systemPropertyVariables>
<runtime.path>${project.basedir}/../eo-runtime</runtime.path>
Expand Down
2 changes: 2 additions & 0 deletions eo-runtime/src/test/java/org/eolang/SnippetTestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Assumptions;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.api.io.TempDir;
import org.junit.jupiter.params.ParameterizedTest;
Expand Down Expand Up @@ -80,6 +81,7 @@ final class SnippetTestCase {
* @throws IOException If fails
*/
@ParameterizedTest
@Tag("slow")
@ExtendWith(WeAreOnline.class)
@SuppressWarnings("unchecked")
@ClasspathSource(value = "org/eolang/snippets/", glob = "**.yaml")
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@ SOFTWARE.
<systemPropertyVariables>
<basedir>${project.basedir}</basedir>
</systemPropertyVariables>
<excludedGroups>slow</excludedGroups>
<properties>
<configurationParameters>
junit.jupiter.execution.parallel.enabled = true
Expand Down

0 comments on commit 5ef4e52

Please sign in to comment.