Skip to content

Commit

Permalink
Disable native for smoke test e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
0marperez committed Oct 3, 2024
1 parent 1e35fc7 commit d465c50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private fun runSmokeTests(service: String, envVars: Map<String, String> = emptyM
val sdkRootDir = System.getProperty("user.dir") + "/../../../"
val runner = GradleRunner.create()
.withProjectDir(File(sdkRootDir))
.withArguments(":tests:codegen:smoke-tests:services:$service:smokeTest")
.withArguments(listOf("-Paws.kotlin.native=false", ":tests:codegen:smoke-tests:services:$service:smokeTest"))
.withEnvironment(envVars)
.build()

Expand Down

0 comments on commit d465c50

Please sign in to comment.