Skip to content

Commit

Permalink
Ignore JUnit 5
Browse files Browse the repository at this point in the history
  • Loading branch information
vasilmkd committed Nov 24, 2024
1 parent dbacf40 commit 75e35a0
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.intellij.openapi.util.io.FileUtil
import org.jetbrains.sbt.JvmMemorySize
import org.jetbrains.sbt.project.settings.SbtExecutionSettings
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.{Test, TestInfo}
import org.junit.jupiter.api.{Disabled, Test, TestInfo}

import java.io.File

Expand Down Expand Up @@ -52,6 +52,7 @@ class MaxJvmHeapParameterTest {
*/

@Test
@Disabled("Doesn't work in CI")
def userSettingsSmallerThanHiddenDefault(testInfo: TestInfo): Unit = {
assertEquals(
Seq(superShellDisabled,"-Xmx4g", "-Xms4g", "-Xmx1g"),
Expand All @@ -60,6 +61,7 @@ class MaxJvmHeapParameterTest {
}

@Test
@Disabled("Doesn't work in CI")
def userSettingsGreaterThanHiddenDefault(testInfo: TestInfo): Unit = {
assertEquals(
Seq(superShellDisabled,"-Xmx4g", "-Xms4g", "-Xmx2g"),
Expand All @@ -68,6 +70,7 @@ class MaxJvmHeapParameterTest {
}

@Test
@Disabled("Doesn't work in CI")
def noSettings(testInfo: TestInfo): Unit = {
assertEquals(
Seq(hiddenDefaultParam, superShellDisabled),
Expand All @@ -76,6 +79,7 @@ class MaxJvmHeapParameterTest {
}

@Test
@Disabled("Doesn't work in CI")
def noSettingsWithXmsSmallerThanDefaultParam(testInfo: TestInfo): Unit = {
assertEquals(
Seq(hiddenDefaultParam, superShellDisabled, "-Xms1g"),
Expand All @@ -84,6 +88,7 @@ class MaxJvmHeapParameterTest {
}

@Test
@Disabled("Doesn't work in CI")
def noSettingsWithXmsGreaterThanDefaultParam(testInfo: TestInfo): Unit = {
assertEquals(
Seq(superShellDisabled, "-Xms2g"),
Expand Down

0 comments on commit 75e35a0

Please sign in to comment.