@@ -329,6 +329,7 @@ class BuildTriggerTests: AppTestCase {
329329
330330 func test_triggerBuildsUnchecked( ) async throws {
331331 try await withDependencies {
332+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
332333 $0. environment. builderToken = { " builder token " }
333334 $0. environment. buildTimeout = { 10 }
334335 } operation: {
@@ -390,6 +391,7 @@ class BuildTriggerTests: AppTestCase {
390391
391392 func test_triggerBuildsUnchecked_supported( ) async throws {
392393 try await withDependencies {
394+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
393395 $0. environment. builderToken = { " builder token " }
394396 $0. environment. buildTimeout = { 10 }
395397 } operation: {
@@ -470,6 +472,7 @@ class BuildTriggerTests: AppTestCase {
470472
471473 func test_triggerBuildsUnchecked_build_exists( ) async throws {
472474 try await withDependencies {
475+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
473476 $0. environment. builderToken = { " builder token " }
474477 $0. environment. buildTimeout = { 10 }
475478 } operation: {
@@ -550,6 +553,7 @@ class BuildTriggerTests: AppTestCase {
550553 func test_triggerBuilds_checked( ) async throws {
551554 try await withDependencies {
552555 $0. environment. allowBuildTriggers = { true }
556+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
553557 $0. environment. builderToken = { " builder token " }
554558 $0. environment. buildTimeout = { 10 }
555559 } operation: {
@@ -662,6 +666,7 @@ class BuildTriggerTests: AppTestCase {
662666 func test_triggerBuilds_multiplePackages( ) async throws {
663667 try await withDependencies {
664668 $0. environment. allowBuildTriggers = { true }
669+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
665670 $0. environment. builderToken = { " builder token " }
666671 $0. environment. buildTimeout = { 10 }
667672 } operation: {
@@ -712,6 +717,7 @@ class BuildTriggerTests: AppTestCase {
712717 func test_triggerBuilds_trimming( ) async throws {
713718 try await withDependencies {
714719 $0. environment. allowBuildTriggers = { true }
720+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
715721 $0. environment. builderToken = { " builder token " }
716722 } operation: {
717723 // Ensure we trim builds as part of triggering
@@ -747,6 +753,7 @@ class BuildTriggerTests: AppTestCase {
747753 func test_triggerBuilds_error( ) async throws {
748754 try await withDependencies {
749755 $0. environment. allowBuildTriggers = { true }
756+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
750757 $0. environment. builderToken = { " builder token " }
751758 $0. environment. buildTimeout = { 10 }
752759 } operation: {
@@ -843,6 +850,7 @@ class BuildTriggerTests: AppTestCase {
843850
844851 func test_override_switch( ) async throws {
845852 try await withDependencies {
853+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
846854 $0. environment. builderToken = { " builder token " }
847855 $0. environment. buildTimeout = { 10 }
848856 } operation: {
@@ -917,6 +925,7 @@ class BuildTriggerTests: AppTestCase {
917925 func test_downscaling( ) async throws {
918926 try await withDependencies {
919927 $0. environment. allowBuildTriggers = { true }
928+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
920929 $0. environment. builderToken = { " builder token " }
921930 $0. environment. buildTimeout = { 10 }
922931 } operation: {
@@ -990,6 +999,7 @@ class BuildTriggerTests: AppTestCase {
990999 func test_downscaling_allow_list_override( ) async throws {
9911000 try await withDependencies {
9921001 $0. environment. allowBuildTriggers = { true }
1002+ $0. environment. awsDocsBucket = { " awsDocsBucket " }
9931003 $0. environment. builderToken = { " builder token " }
9941004 $0. environment. buildTimeout = { 10 }
9951005 } operation: {
0 commit comments