Skip to content

Commit

Permalink
disable line tests in clion integration tests (#484)
Browse files Browse the repository at this point in the history
* disable line tests

* fix: edt exception after failed test
  • Loading branch information
vol0n authored Oct 3, 2022
1 parent d43a5cf commit 10d73de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ abstract class BaseGenerationTestCase {
@AfterAll
fun tearDownAll() {
logger.info("tearDownAll of BaseGenerationTest is called")
waitForRequestsToFinish()
fixture.tearDown()
logger.info("tearDownAll of BaseGenerationTest has finished!")
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.utbot.cpp.clion.plugin.tests

import com.intellij.openapi.editor.Editor
import org.junit.jupiter.api.Disabled
import org.junit.jupiter.api.Test
import org.utbot.cpp.clion.plugin.BaseGenerationTestCase
import org.utbot.cpp.clion.plugin.Clang
Expand All @@ -11,6 +12,7 @@ import org.utbot.cpp.clion.plugin.assertFileOrDirExists
import org.utbot.cpp.clion.plugin.assertTestFilesExist
import org.utbot.cpp.clion.plugin.settings.settings

@Disabled("Disabled as a flaky test until #483 is fixed")
class GenerateForLineTest: BaseGenerationTestCase() {
private val logger = setupLogger()

Expand Down

0 comments on commit 10d73de

Please sign in to comment.