Skip to content

Commit db218cf

Browse files
authored
Try to fix Rider timeout issues in CI again (#3174)
1 parent abcb756 commit db218cf

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

jetbrains-rider/tst/base/AwsReuseSolutionTestBase.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import com.jetbrains.rider.test.scriptingApi.useCachedTemplates
1515
import org.testng.annotations.AfterClass
1616
import org.testng.annotations.BeforeClass
1717
import java.io.File
18+
import java.time.Duration
1819

1920
/**
2021
* Base test class that uses the same solution per test class.
@@ -87,4 +88,6 @@ abstract class AwsReuseSolutionTestBase : BaseTestWithSolutionBase() {
8788

8889
myProject = openSolution(solutionDirName, params)
8990
}
91+
92+
override val backendShellLoadTimeout: Duration = backendStartTimeout
9093
}

jetbrains-rider/tst/software/aws/toolkits/jetbrains/services/lambda/completion/DotNetHandlerCompletionTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import org.testng.annotations.Test
1919
import java.time.Duration
2020

2121
class DotNetHandlerCompletionTest : BaseTestWithSolution() {
22-
// FIX_WHEN_MIN_IS_212: backendShellLoadedTimeout is the one we actually need to override
2322
override val backendLoadedTimeout: Duration = backendStartTimeout
23+
override val backendShellLoadTimeout: Duration = backendStartTimeout
2424

2525
override fun getSolutionDirectoryName(): String = ""
2626

jetbrains-rider/tst/software/aws/toolkits/jetbrains/services/lambda/dotnet/LambdaGutterMarkHighlightingTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ class LambdaGutterMarkHighlightingTest : BaseTestWithMarkup() {
2929
setUpCustomToolset(msBuild, host)
3030
}
3131

32-
// FIX_WHEN_MIN_IS_212: backendShellLoadedTimeout is the one we actually need to override
3332
override val backendLoadedTimeout: Duration = backendStartTimeout
33+
override val backendShellLoadTimeout: Duration = backendStartTimeout
3434

3535
override fun getSolutionDirectoryName(): String = "SamHelloWorldApp"
3636

0 commit comments

Comments
 (0)