From 1cf26896c50379c671e120985c4f1194f44d0205 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Wed, 29 Apr 2020 20:08:54 -0700 Subject: [PATCH] Default ansible-test provisioning to us-east-1. Previously windows instances on Shippable would be automatically directed to us-east-2. --- test/lib/ansible_test/_internal/core_ci.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/lib/ansible_test/_internal/core_ci.py b/test/lib/ansible_test/_internal/core_ci.py index aff55e51171..65d3037f58e 100644 --- a/test/lib/ansible_test/_internal/core_ci.py +++ b/test/lib/ansible_test/_internal/core_ci.py @@ -160,14 +160,7 @@ class AnsibleCoreCI: region = args.remote_aws_region # use a dedicated CI key when overriding the region selection self.ci_key += '.%s' % args.remote_aws_region - elif is_shippable(): - # split Shippable jobs across multiple regions to maximize use of launch credits - if self.platform == 'windows': - region = 'us-east-2' - else: - region = 'us-east-1' else: - # send all non-Shippable jobs to us-east-1 to reduce api key maintenance region = 'us-east-1' self.path = "%s-%s" % (self.path, region)