Created
June 29, 2022 02:05
-
-
Save friddle/d99a724335c26a0f7a9b486220b35f16 to your computer and use it in GitHub Desktop.
Gradle kts setting skip test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tasks.withType<Test>{ | |
onlyIf { System.getenv("test.enable")=="true" } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment