Disable slow tests that don't provide much value

This commit is contained in:
P0nk
2024-09-28 18:30:31 +02:00
parent 55c9d4abbb
commit 1be775394e

View File

@@ -1,6 +1,7 @@
package scripting;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
@@ -13,6 +14,7 @@ import java.util.stream.Stream;
import static org.junit.jupiter.api.Assertions.assertNotNull;
@Disabled("Excluding from the build because these tests take too long to run. Can run on demand if needed.")
public class ScriptEvaluationTest {
private AbstractScriptManager scriptManager = new AbstractScriptManager() {};