-
Notifications
You must be signed in to change notification settings - Fork 55
feat: smoke tests #1427
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
feat: smoke tests #1427
Changes from 1 commit
602bac1
989d8ec
9ca8f2e
b00ec1f
35708df
2399355
2d98a99
d7a4877
f390f6a
90a93ac
6b288ed
c6701cb
95b553d
5ac3db2
ca30211
08356db
e7fdeff
8f0dec1
431e63e
1706764
bb53c3d
e13e9fc
afc5168
c39f3fe
5dfd004
87fa6bb
c1e0edf
dfcffbb
25b8e8e
8aae6e4
5687f7e
1e35fc7
d465c50
73f694a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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() | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice find!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!