From f5ed556ff7f19b2b252d72d1750c47db5f66816c Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 8 Feb 2021 16:06:15 +0100 Subject: [PATCH 1/2] Reorganized ops --- flank-scripts/build.gradle.kts | 2 +- .../main/kotlin/flank/scripts/cli/shell/BuildFtlCommand.kt | 2 +- .../main/kotlin/flank/scripts/cli/shell/RunFtlLocalCommand.kt | 2 +- .../flank/scripts/cli/shell/UniversalFrameworkCommand.kt | 2 +- .../scripts/cli/shell/buildexample/BuildExampleCommand.kt | 2 +- .../scripts/ops/ci/{releasenotes => }/AppendReleaseNotes.kt | 4 +++- .../main/kotlin/flank/scripts/ops/ci/CreateReleaseNotes.kt | 3 +-- .../releasenotes => common}/ConventionalCommitFormatter.kt | 2 +- .../buildexample/ios => common}/EarlGreyExampleConsts.kt | 2 +- .../ops/{ci/releasenotes => common}/GenerateChangeLog.kt | 2 +- .../ops/{ci/releasenotes => common}/ReleaseNotesWithType.kt | 2 +- .../main/kotlin/flank/scripts/ops/release/hub/ReleaseFlank.kt | 4 ++-- .../src/main/kotlin/flank/scripts/ops/shell/SetupIosEnv.kt | 2 +- .../ops/shell/buildexample/ios/BuildEarlGreyExample.kt | 3 +++ .../flank/scripts/ops/shell/buildexample/ios/BuildExample.kt | 2 +- .../flank/scripts/ops/shell/buildexample/ios/BuildFtl.kt | 2 +- .../flank/scripts/ops/shell/buildexample/ios/BuildIosIPA.kt | 2 -- .../ops/shell/buildexample/ios/BuildIosTestArtifacts.kt | 1 - .../scripts/ops/shell/buildexample/ios/IosBuildCommand.kt | 2 +- .../flank/scripts/ops/shell/buildexample/ios/LipoHelper.kt | 2 +- .../flank/scripts/ops/shell/buildexample/ios/RunFtlLocal.kt | 2 +- .../scripts/ops/shell/buildexample/ios/UniversalFramework.kt | 2 +- .../ops/ci/releasenotes/ConventionalCommitFormatterTest.kt | 1 + .../scripts/ops/ci/releasenotes/ReleaseNotesWithTypeTest.kt | 1 + 24 files changed, 27 insertions(+), 24 deletions(-) rename flank-scripts/src/main/kotlin/flank/scripts/ops/ci/{releasenotes => }/AppendReleaseNotes.kt (81%) rename flank-scripts/src/main/kotlin/flank/scripts/ops/{ci/releasenotes => common}/ConventionalCommitFormatter.kt (95%) rename flank-scripts/src/main/kotlin/flank/scripts/ops/{shell/buildexample/ios => common}/EarlGreyExampleConsts.kt (78%) rename flank-scripts/src/main/kotlin/flank/scripts/ops/{ci/releasenotes => common}/GenerateChangeLog.kt (98%) rename flank-scripts/src/main/kotlin/flank/scripts/ops/{ci/releasenotes => common}/ReleaseNotesWithType.kt (92%) diff --git a/flank-scripts/build.gradle.kts b/flank-scripts/build.gradle.kts index 91fe1d8ac1..e6cbb3009f 100644 --- a/flank-scripts/build.gradle.kts +++ b/flank-scripts/build.gradle.kts @@ -28,7 +28,7 @@ shadowJar.apply { } } // .. -version = "1.5.1" +version = "1.5.2" group = "com.github.flank" application { diff --git a/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/BuildFtlCommand.kt b/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/BuildFtlCommand.kt index be0efffaca..72bb80f33e 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/BuildFtlCommand.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/BuildFtlCommand.kt @@ -1,7 +1,7 @@ package flank.scripts.cli.shell import com.github.ajalt.clikt.core.CliktCommand -import flank.scripts.ops.shell.ios.buildFtl +import flank.scripts.ops.shell.buildexample.ios.buildFtl object BuildFtlCommand : CliktCommand( name = "iosBuildFtl", diff --git a/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/RunFtlLocalCommand.kt b/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/RunFtlLocalCommand.kt index 44eada98a0..e2918b0b14 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/RunFtlLocalCommand.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/RunFtlLocalCommand.kt @@ -3,7 +3,7 @@ package flank.scripts.cli.shell import com.github.ajalt.clikt.core.CliktCommand import com.github.ajalt.clikt.parameters.options.option import com.github.ajalt.clikt.parameters.options.required -import flank.scripts.ops.shell.ios.runFtlLocal +import flank.scripts.ops.shell.buildexample.ios.runFtlLocal object RunFtlLocalCommand : CliktCommand( name = "iosRunFtlLocal", diff --git a/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/UniversalFrameworkCommand.kt b/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/UniversalFrameworkCommand.kt index 1a5dc42167..d5afcfc217 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/UniversalFrameworkCommand.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/UniversalFrameworkCommand.kt @@ -1,7 +1,7 @@ package flank.scripts.cli.shell import com.github.ajalt.clikt.core.CliktCommand -import flank.scripts.ops.shell.ios.createUniversalFrameworkFiles +import flank.scripts.ops.shell.buildexample.ios.createUniversalFrameworkFiles object UniversalFrameworkCommand : CliktCommand( name = "iosUniversalFramework", diff --git a/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/buildexample/BuildExampleCommand.kt b/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/buildexample/BuildExampleCommand.kt index a879465ab1..47543c2cb1 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/buildexample/BuildExampleCommand.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/cli/shell/buildexample/BuildExampleCommand.kt @@ -1,7 +1,7 @@ package flank.scripts.cli.shell.buildexample import com.github.ajalt.clikt.core.CliktCommand -import flank.scripts.ops.shell.ios.buildIosExample +import flank.scripts.ops.shell.buildexample.ios.buildIosExample object BuildExampleCommand : CliktCommand( name = "iosBuildExample", diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/AppendReleaseNotes.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/AppendReleaseNotes.kt similarity index 81% rename from flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/AppendReleaseNotes.kt rename to flank-scripts/src/main/kotlin/flank/scripts/ops/ci/AppendReleaseNotes.kt index 663b084f17..f9f69606d8 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/AppendReleaseNotes.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/AppendReleaseNotes.kt @@ -1,6 +1,8 @@ -package flank.scripts.ops.ci.releasenotes +package flank.scripts.ops.ci import flank.common.withNewLineAtTheEnd +import flank.scripts.ops.common.ReleaseNotesWithType +import flank.scripts.ops.common.asString import java.io.File fun File.appendReleaseNotes(releaseNotesWithType: ReleaseNotesWithType, releaseTag: String) { diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/CreateReleaseNotes.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/CreateReleaseNotes.kt index 6107a40a2e..bd306d4df5 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/CreateReleaseNotes.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/CreateReleaseNotes.kt @@ -3,8 +3,7 @@ package flank.scripts.ops.ci import com.github.kittinunf.result.map import com.github.kittinunf.result.success import flank.scripts.data.github.getLatestReleaseTag -import flank.scripts.ops.ci.releasenotes.appendReleaseNotes -import flank.scripts.ops.ci.releasenotes.generateReleaseNotes +import flank.scripts.ops.common.generateReleaseNotes import kotlinx.coroutines.runBlocking import java.io.File diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/ConventionalCommitFormatter.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/common/ConventionalCommitFormatter.kt similarity index 95% rename from flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/ConventionalCommitFormatter.kt rename to flank-scripts/src/main/kotlin/flank/scripts/ops/common/ConventionalCommitFormatter.kt index eb4d394687..89d9be6682 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/ConventionalCommitFormatter.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/common/ConventionalCommitFormatter.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.ci.releasenotes +package flank.scripts.ops.common fun String.mapPrTitleWithType() = when { startsWith("feat") -> "Features" to skipConventionalCommitPrefix().capitalize() diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/EarlGreyExampleConsts.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/common/EarlGreyExampleConsts.kt similarity index 78% rename from flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/EarlGreyExampleConsts.kt rename to flank-scripts/src/main/kotlin/flank/scripts/ops/common/EarlGreyExampleConsts.kt index 21cab12e7f..b2ea4e9ded 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/EarlGreyExampleConsts.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/common/EarlGreyExampleConsts.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.shell.buildexample.ios +package flank.scripts.ops.common const val EARL_GREY_EXAMPLE = "EarlGreyExample" const val EARL_GREY_EXAMPLE_TESTS = "EarlGreyExampleTests" diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/GenerateChangeLog.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/common/GenerateChangeLog.kt similarity index 98% rename from flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/GenerateChangeLog.kt rename to flank-scripts/src/main/kotlin/flank/scripts/ops/common/GenerateChangeLog.kt index 3d6247a134..c28744465d 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/GenerateChangeLog.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/common/GenerateChangeLog.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.ci.releasenotes +package flank.scripts.ops.common import com.github.kittinunf.result.Result import com.github.kittinunf.result.getOrElse diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/ReleaseNotesWithType.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/common/ReleaseNotesWithType.kt similarity index 92% rename from flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/ReleaseNotesWithType.kt rename to flank-scripts/src/main/kotlin/flank/scripts/ops/common/ReleaseNotesWithType.kt index 587bceff9f..0ac6e4721d 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/ci/releasenotes/ReleaseNotesWithType.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/common/ReleaseNotesWithType.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.ci.releasenotes +package flank.scripts.ops.common import flank.scripts.utils.markdownH2 import flank.scripts.utils.markdownH3 diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/release/hub/ReleaseFlank.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/release/hub/ReleaseFlank.kt index 1bba09a135..8ab6102d41 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/release/hub/ReleaseFlank.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/release/hub/ReleaseFlank.kt @@ -1,8 +1,8 @@ package flank.scripts.ops.release.hub import com.google.common.annotations.VisibleForTesting -import flank.scripts.ops.ci.releasenotes.asString -import flank.scripts.ops.ci.releasenotes.generateReleaseNotes +import flank.scripts.ops.common.asString +import flank.scripts.ops.common.generateReleaseNotes import flank.scripts.utils.ERROR_WHEN_RUNNING import flank.scripts.utils.runCommand import java.io.File diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/SetupIosEnv.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/SetupIosEnv.kt index b89d119ff6..4bb39117fd 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/SetupIosEnv.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/SetupIosEnv.kt @@ -1,7 +1,7 @@ package flank.scripts.ops.shell import flank.common.iOSTestProjectsPath -import flank.scripts.ops.shell.buildexample.ios.EARL_GREY_EXAMPLE +import flank.scripts.ops.common.EARL_GREY_EXAMPLE import flank.scripts.utils.downloadCocoaPodsIfNeeded import flank.scripts.utils.failIfWindows import flank.scripts.utils.installPodsIfNeeded diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildEarlGreyExample.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildEarlGreyExample.kt index b6f9842096..1653bf7343 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildEarlGreyExample.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildEarlGreyExample.kt @@ -1,6 +1,9 @@ package flank.scripts.ops.shell.buildexample.ios import flank.common.iOSTestProjectsPath +import flank.scripts.ops.common.EARL_GREY_EXAMPLE +import flank.scripts.ops.common.EARL_GREY_EXAMPLE_SWIFT_TESTS +import flank.scripts.ops.common.EARL_GREY_EXAMPLE_TESTS import flank.scripts.utils.failIfWindows import java.nio.file.Paths diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildExample.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildExample.kt index 9a2459da1b..a1a0cdd150 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildExample.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildExample.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.shell.ios +package flank.scripts.ops.shell.buildexample.ios import flank.common.archive import flank.common.currentPath diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildFtl.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildFtl.kt index bd3fda6075..749677b94c 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildFtl.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildFtl.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.shell.ios +package flank.scripts.ops.shell.buildexample.ios import flank.common.archive import flank.scripts.utils.downloadXcPrettyIfNeeded diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildIosIPA.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildIosIPA.kt index 35b203e8a6..8365165dfa 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildIosIPA.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildIosIPA.kt @@ -1,8 +1,6 @@ package flank.scripts.ops.shell.buildexample.ios import flank.common.flankFixturesIosTmpPath -import flank.scripts.ops.shell.ios.createXcodeArchiveCommand -import flank.scripts.ops.shell.ios.createXcodeExportArchiveCommand import flank.scripts.utils.downloadCocoaPodsIfNeeded import flank.scripts.utils.downloadXcPrettyIfNeeded import flank.scripts.utils.installPodsIfNeeded diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildIosTestArtifacts.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildIosTestArtifacts.kt index 74e4df81b7..2789f2de19 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildIosTestArtifacts.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/BuildIosTestArtifacts.kt @@ -2,7 +2,6 @@ package flank.scripts.ops.shell.buildexample.ios import flank.common.archive import flank.common.flankFixturesIosTmpPath -import flank.scripts.ops.shell.ios.createXcodeBuildForTestingCommand import flank.scripts.utils.downloadCocoaPodsIfNeeded import flank.scripts.utils.downloadXcPrettyIfNeeded import flank.scripts.utils.installPodsIfNeeded diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/IosBuildCommand.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/IosBuildCommand.kt index f88eb8c839..6ef49fc645 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/IosBuildCommand.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/IosBuildCommand.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.shell.ios +package flank.scripts.ops.shell.buildexample.ios fun createXcodeBuildForTestingCommand( buildDir: String, diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/LipoHelper.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/LipoHelper.kt index bf25a353b3..b17c47969b 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/LipoHelper.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/LipoHelper.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.shell.ios +package flank.scripts.ops.shell.buildexample.ios fun createLipoCommand( outputPath: String, diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/RunFtlLocal.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/RunFtlLocal.kt index 53bb43f8e3..ef090a196e 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/RunFtlLocal.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/RunFtlLocal.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.shell.ios +package flank.scripts.ops.shell.buildexample.ios import flank.common.currentPath import flank.scripts.utils.failIfWindows diff --git a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/UniversalFramework.kt b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/UniversalFramework.kt index 8e182702fe..56975d083f 100644 --- a/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/UniversalFramework.kt +++ b/flank-scripts/src/main/kotlin/flank/scripts/ops/shell/buildexample/ios/UniversalFramework.kt @@ -1,4 +1,4 @@ -package flank.scripts.ops.shell.ios +package flank.scripts.ops.shell.buildexample.ios import flank.common.currentPath import flank.scripts.utils.failIfWindows diff --git a/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/ConventionalCommitFormatterTest.kt b/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/ConventionalCommitFormatterTest.kt index 5b2d47efb9..cde2771489 100644 --- a/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/ConventionalCommitFormatterTest.kt +++ b/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/ConventionalCommitFormatterTest.kt @@ -1,6 +1,7 @@ package flank.scripts.ops.ci.releasenotes import com.google.common.truth.Truth.assertThat +import flank.scripts.ops.common.mapPrTitleWithType import org.junit.Test import org.junit.runner.RunWith import org.junit.runners.Parameterized diff --git a/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/ReleaseNotesWithTypeTest.kt b/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/ReleaseNotesWithTypeTest.kt index e610d8b917..d39ba65cf7 100644 --- a/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/ReleaseNotesWithTypeTest.kt +++ b/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/ReleaseNotesWithTypeTest.kt @@ -1,5 +1,6 @@ package flank.scripts.ops.ci.releasenotes +import flank.scripts.ops.common.asString import org.junit.Assert.assertEquals import org.junit.Test From 1b363112807ded31166812d2256172f51b13078e Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 8 Feb 2021 16:08:44 +0100 Subject: [PATCH 2/2] Update AppendReleaseNotesTest.kt --- .../flank/scripts/ops/ci/releasenotes/AppendReleaseNotesTest.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/AppendReleaseNotesTest.kt b/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/AppendReleaseNotesTest.kt index 0cfe36b84f..4d54d466c6 100644 --- a/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/AppendReleaseNotesTest.kt +++ b/flank-scripts/src/test/kotlin/flank/scripts/ops/ci/releasenotes/AppendReleaseNotesTest.kt @@ -1,6 +1,7 @@ package flank.scripts.ops.ci.releasenotes import com.google.common.truth.Truth.assertThat +import flank.scripts.ops.ci.appendReleaseNotes import flank.scripts.utils.markdownH2 import flank.scripts.utils.markdownH3 import org.junit.Test