diff --git a/.gitignore b/.gitignore index e2dc65c978..8b4f3b290d 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,4 @@ target/ .classpath .recommenders .mvn/wrapper/maven-wrapper.jar -.factorypath +.factorypath \ No newline at end of file diff --git a/eo-maven-plugin/src/test/java/org/eolang/maven/BinarizeMojoTest.java b/eo-maven-plugin/src/test/java/org/eolang/maven/BinarizeMojoTest.java index b5d0a3f63c..9035d55680 100644 --- a/eo-maven-plugin/src/test/java/org/eolang/maven/BinarizeMojoTest.java +++ b/eo-maven-plugin/src/test/java/org/eolang/maven/BinarizeMojoTest.java @@ -30,20 +30,12 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.junit.jupiter.api.io.TempDir; -import org.junit.jupiter.api.parallel.Execution; -import org.junit.jupiter.api.parallel.ExecutionMode; /** * Test case for {@link BinarizeMojo}. * * @since 0.1 - * @todo #1996:30min Make BinarizeMojoTest run tests in parallel. - * Currently all tests in this class are executed in the same thread. This is done by the - * annotation @Execution(ExecutionMode.SAME_THREAD) on the class. This is a temporary solution - * because the class has some concurrency problems. We need to make the tests in this class run - * in parallel and then remove the annotation. */ -@Execution(ExecutionMode.SAME_THREAD) final class BinarizeMojoTest { /**