Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scalacheck-toolbox-datetime to 0.7.0 #2740

Merged
merged 1 commit into from
Feb 16, 2023
Merged
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
9 changes: 5 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1471,7 +1471,8 @@ lazy val awsCdkTests: ProjectMatrix = (projectMatrix in file("serverless/aws/cdk
// processes use files which are generated by `AwsCdkAppTemplate` called above
lazy val nmpInstall = Process("npm i", new java.io.File(awsCdkTestAppDir)).run()
lazy val cdkSynth = Process("cdk synth", new java.io.File(awsCdkTestAppDir)).run()
lazy val sam = Process(s"sam local start-api -t $awsCdkTestAppDir/cdk.out/TapirCdkStack.template.json -p 3010 --warm-containers EAGER").run()
lazy val sam =
Process(s"sam local start-api -t $awsCdkTestAppDir/cdk.out/TapirCdkStack.template.json -p 3010 --warm-containers EAGER").run()
Seq(
Tests.Setup(() => {
val npmExit = nmpInstall.exitValue()
Expand Down Expand Up @@ -1500,7 +1501,7 @@ lazy val awsCdkTests: ProjectMatrix = (projectMatrix in file("serverless/aws/cdk

val deleted = new scala.reflect.io.Directory(new File(awsCdkTestAppDir).getAbsoluteFile).deleteRecursively()
log.info(s"Removed tmp files: $deleted")
}),
})
)
},
Test / parallelExecution := false
Expand Down Expand Up @@ -1723,7 +1724,7 @@ lazy val openapiCodegenCore: ProjectMatrix = (projectMatrix in file("openapi-cod
scalaTest.value % Test,
scalaCheck.value % Test,
scalaTestPlusScalaCheck.value % Test,
"com.47deg" %% "scalacheck-toolbox-datetime" % "0.6.0" % Test,
"com.47deg" %% "scalacheck-toolbox-datetime" % "0.7.0" % Test,
scalaOrganization.value % "scala-reflect" % scalaVersion.value,
scalaOrganization.value % "scala-compiler" % scalaVersion.value % Test
)
Expand All @@ -1746,7 +1747,7 @@ lazy val openapiCodegenSbt: ProjectMatrix = (projectMatrix in file("openapi-code
scalaTest.value % Test,
scalaCheck.value % Test,
scalaTestPlusScalaCheck.value % Test,
"com.47deg" %% "scalacheck-toolbox-datetime" % "0.6.0" % Test,
"com.47deg" %% "scalacheck-toolbox-datetime" % "0.7.0" % Test,
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Test
)
)
Expand Down