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.
2 parents a2ccda5 + e2c709c commit 26196edCopy full SHA for 26196ed
ui-tests-starter/build.gradle.kts
@@ -93,9 +93,14 @@ tasks.register<Test>("uiTest") {
93
94
dependsOn(prepareAmazonQTest)
95
dependsOn(testPlugins)
96
-
97
systemProperty("ui.test.plugins", testPlugins.get().asPath)
98
systemProperty("org.gradle.project.ideProfileName", ideProfile.name)
+ val testSuite = System.getenv("TEST_DIR") ?: ""
99
+ if (testSuite.isNotBlank()) {
100
+ filter {
101
+ includeTestsMatching(testSuite)
102
+ }
103
104
}
105
106
// hack to disable ui tests in ./gradlew check
0 commit comments