diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-08-24 14:02:07 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-08-25 16:21:32 +0200 |
commit | 7196323582dce7ca3f9b07262a1f94ecd8514539 (patch) | |
tree | 0c326aee84d4727d5cd5bc5c8198b992d5b58de6 /integration-tests/src/main/kotlin/org | |
parent | 219e2c98f5d03fc8581fd6ce9dd870919523be44 (diff) | |
download | dokka-7196323582dce7ca3f9b07262a1f94ecd8514539.tar.gz dokka-7196323582dce7ca3f9b07262a1f94ecd8514539.tar.bz2 dokka-7196323582dce7ca3f9b07262a1f94ecd8514539.zip |
- Move `test` projects into semantic parent projects
- Implement new `:test-utils` project
- Resolve requirement for Android SDK installation
Diffstat (limited to 'integration-tests/src/main/kotlin/org')
-rw-r--r-- | integration-tests/src/main/kotlin/org/jetbrains/dokka/it/environmentUtils.kt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/integration-tests/src/main/kotlin/org/jetbrains/dokka/it/environmentUtils.kt b/integration-tests/src/main/kotlin/org/jetbrains/dokka/it/environmentUtils.kt deleted file mode 100644 index eadf5a8c..00000000 --- a/integration-tests/src/main/kotlin/org/jetbrains/dokka/it/environmentUtils.kt +++ /dev/null @@ -1,16 +0,0 @@ -package org.jetbrains.dokka.it - -import java.io.File - -/** - * Indicating whether or not the current machine executing the test is a CI - */ -val isCI: Boolean get() = System.getenv("CI") == "true" - -val isAndroidSdkInstalled: Boolean = System.getenv("ANDROID_SDK_ROOT") != null || - System.getenv("ANDROID_HOME") != null - -val isMavenInstalled: Boolean = System.getenv("PATH").orEmpty() - .split(File.pathSeparator) - .flatMap { pathElement -> File(pathElement).listFiles().orEmpty().toList() } - .any { pathElement -> "mvn" == pathElement.name } |