Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,21 @@ class FladlePluginDelegate {
args =
if (project.hasProperty("dumpShards")) {
listOf(
"firebase", "test", "android", "run", "-c",
writeConfigProps.get().fladleConfigFile.get().asFile.absolutePath, "--dump-shards",
"firebase",
"test",
"android",
"run",
"-c",
writeConfigProps.get().fladleConfigFile.get().asFile.absolutePath,
"--dump-shards",
)
} else {
listOf(
"firebase", "test", "android", "run", "-c",
"firebase",
"test",
"android",
"run",
"-c",
writeConfigProps.get().fladleConfigFile.get().asFile.absolutePath,
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ class YamlWriterTest {
smart-flank-disable-upload: false
legacy-junit-result: false
full-junit-result: false
output-style: single
""".trimIndent() + '\n',
output-style: single\n
""".trimIndent(),
)
}

Expand Down Expand Up @@ -348,8 +348,8 @@ class YamlWriterTest {
smart-flank-disable-upload: false
legacy-junit-result: false
full-junit-result: false
output-style: single
""".trimIndent() + '\n',
output-style: single\n
""".trimIndent(),
)
}

Expand Down Expand Up @@ -386,8 +386,8 @@ class YamlWriterTest {
smart-flank-disable-upload: false
legacy-junit-result: false
full-junit-result: false
output-style: single
""".trimIndent() + '\n',
output-style: single\n
""".trimIndent(),
)
}

Expand Down Expand Up @@ -1001,8 +1001,8 @@ class YamlWriterTest {
smart-flank-disable-upload: false
legacy-junit-result: false
full-junit-result: false
output-style: single
""".trimIndent() + '\n',
output-style: single\n
""".trimIndent(),
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ValidateExclusionsTest {
| instrumentationApk = "test.apk"
| testShards.set(1)
| maxTestShards.set(2)
| flankVersion.set("21.01.0")
| flankVersion.set("23.01.0")
|}
""".trimMargin(),
)
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

ben-manes-versions = { id = "com.github.ben-manes.versions", version = "0.51.0" }

kotlinter = { id = "org.jmailen.kotlinter", version = "4.0.0" }
kotlinter = { id = "org.jmailen.kotlinter", version = "4.3.0" }

gradle-plugin-publish = {id = "com.gradle.plugin-publish", version = "1.2.1" }

Expand Down