Skip to content

Commit

Permalink
Add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mlischetti committed Apr 16, 2024
1 parent 42e3760 commit 6c56a8a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ class NativeCliRuntimeIT extends AnyFunSpec
private val INPUT_FILE_PATTERN = Pattern.compile("in[0-9]+\\.[a-zA-Z]+")
private val OUTPUT_FILE_PATTERN = Pattern.compile("out\\.[a-zA-Z]+")

private val versionString: String = DataWeaveVersion(System.getProperty("weaveSuiteVersion", ComponentVersion.weaveVersion)).toString()
private val weaveSuiteVersion = System.getProperty("weaveSuiteVersion", ComponentVersion.weaveVersion)

private val versionString: String = DataWeaveVersion(weaveSuiteVersion).toString()

println(s"********************** Running suite with DW suite version: $versionString **********************")

val testSuites = Seq(
TestSuite("master", loadTestZipFile(s"weave-suites/runtime-$versionString-test.zip")),
Expand All @@ -72,7 +76,7 @@ class NativeCliRuntimeIT extends AnyFunSpec
zipFile
}

println(s"********************** Running suite with DW suite version: $versionString **********************")


testSuites.foreach {
testSuite => {
Expand Down

0 comments on commit 6c56a8a

Please sign in to comment.