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 b80479f commit 4646df9Copy full SHA for 4646df9
ui-tests-starter/build.gradle.kts
@@ -88,9 +88,14 @@ tasks.register<Test>("uiTest") {
88
89
dependsOn(prepareAmazonQTest)
90
dependsOn(testPlugins)
91
-
92
systemProperty("ui.test.plugins", testPlugins.get().asPath)
93
systemProperty("org.gradle.project.ideProfileName", ideProfile.name)
+ val testSuite = System.getenv("TEST_SUITE")
94
+ if (testSuite.toString().isNotBlank()) {
95
+ filter {
96
+ includeTestsMatching(testSuite.toString())
97
+ }
98
99
}
100
101
// hack to disable ui tests in ./gradlew check
0 commit comments