Skip to content

Commit aa05c62

Browse files
authored
misc: disable smoke test runner code generation (#1193)
1 parent 6d2870f commit aa05c62

File tree

1 file changed

+3
-3
lines changed
  • codegen/smithy-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/rendering/smoketests

1 file changed

+3
-3
lines changed

codegen/smithy-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/rendering/smoketests/SmokeTestsIntegration.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import software.amazon.smithy.kotlin.codegen.core.CodegenContext
55
import software.amazon.smithy.kotlin.codegen.core.DEFAULT_TEST_SOURCE_SET_ROOT
66
import software.amazon.smithy.kotlin.codegen.core.KotlinDelegator
77
import software.amazon.smithy.kotlin.codegen.integration.KotlinIntegration
8-
import software.amazon.smithy.kotlin.codegen.model.hasTrait
9-
import software.amazon.smithy.kotlin.codegen.utils.topDownOperations
108
import software.amazon.smithy.model.Model
119
import software.amazon.smithy.smoketests.traits.SmokeTestsTrait
1210

@@ -15,7 +13,9 @@ import software.amazon.smithy.smoketests.traits.SmokeTestsTrait
1513
*/
1614
class SmokeTestsIntegration : KotlinIntegration {
1715
override fun enabledForService(model: Model, settings: KotlinSettings): Boolean =
18-
model.topDownOperations(settings.service).any { it.hasTrait<SmokeTestsTrait>() }
16+
false
17+
// FIXME: Enable smoke tests again
18+
// model.topDownOperations(settings.service).any { it.hasTrait<SmokeTestsTrait>() }
1919

2020
override fun writeAdditionalFiles(ctx: CodegenContext, delegator: KotlinDelegator) =
2121
delegator.useFileWriter(

0 commit comments

Comments
 (0)