We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4646df9 commit 5534911Copy full SHA for 5534911
ui-tests-starter/build.gradle.kts
@@ -90,10 +90,10 @@ tasks.register<Test>("uiTest") {
90
dependsOn(testPlugins)
91
systemProperty("ui.test.plugins", testPlugins.get().asPath)
92
systemProperty("org.gradle.project.ideProfileName", ideProfile.name)
93
- val testSuite = System.getenv("TEST_SUITE")
94
- if (testSuite.toString().isNotBlank()) {
+ val testSuite = System.getenv("TEST_DIR") ?: ""
+ if (testSuite.isNotBlank()) {
95
filter {
96
- includeTestsMatching(testSuite.toString())
+ includeTestsMatching(testSuite)
97
}
98
99
0 commit comments