Skip to content

Instantly share code, notes, and snippets.

@friddle
Created June 29, 2022 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save friddle/d99a724335c26a0f7a9b486220b35f16 to your computer and use it in GitHub Desktop.
Save friddle/d99a724335c26a0f7a9b486220b35f16 to your computer and use it in GitHub Desktop.
Gradle kts setting skip test
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