File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
tst/software/aws/toolkits/jetbrains/uitests
tst-243+/software/aws/toolkits/jetbrains/uitests Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 4
4
package software.aws.toolkits.jetbrains.uitests
5
5
6
6
import com.intellij.ide.starter.ci.CIServer
7
+ import com.intellij.ide.starter.config.ConfigurationStorage
7
8
import com.intellij.ide.starter.junit5.config.LogEnvironmentVariables
8
9
import java.nio.file.Path
9
10
10
11
object TestCIServer : CIServer {
11
- override val isBuildRunningOnCI: Boolean = false // System.getenv("CI").toBoolean()
12
+ override val isBuildRunningOnCI: Boolean = System .getenv(" CI" ).toBoolean()
12
13
override val buildNumber: String = " "
13
14
override val branchName: String = " "
14
15
override val buildParams: Map <String , String > = mapOf ()
@@ -28,3 +29,5 @@ object TestCIServer : CIServer {
28
29
29
30
override fun isTestFailureShouldBeIgnored (message : String ) = false
30
31
}
32
+
33
+
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ import com.intellij.driver.sdk.openFile
6
6
import com.intellij.driver.sdk.ui.ui
7
7
import com.intellij.driver.sdk.waitForProjectOpen
8
8
import com.intellij.ide.starter.ci.CIServer
9
+ import com.intellij.ide.starter.config.ConfigurationStorage
10
+ import com.intellij.ide.starter.config.logEnvironmentVariables
9
11
import com.intellij.ide.starter.di.di
10
12
import com.intellij.ide.starter.driver.engine.runIdeWithDriver
11
13
import com.intellij.ide.starter.ide.IdeProductProvider
@@ -28,6 +30,7 @@ class OfflineAmazonQInlineCompletionTest {
28
30
di = DI {
29
31
extend(di)
30
32
bindSingleton<CIServer >(overrides = true ) { TestCIServer }
33
+ ConfigurationStorage .Companion .logEnvironmentVariables(false )
31
34
}
32
35
}
33
36
You can’t perform that action at this time.
0 commit comments