Remove --fast from the test farm tests (#7427)

This commit is contained in:
Andrzej Górski
2019-10-08 21:24:55 +02:00
committed by Adrien Ferrand
parent 0cfedbc5f5
commit 9da07590bd
4 changed files with 8 additions and 10 deletions
+2 -5
View File
@@ -84,9 +84,6 @@ parser.add_argument('--killboulder',
parser.add_argument('--boulderonly',
action='store_true',
help="only make a boulder server")
parser.add_argument('--fast',
action='store_true',
help="use larger instance types to run faster (saves about a minute, probably not worth it)")
cl_args = parser.parse_args()
# Credential Variables
@@ -310,10 +307,10 @@ def create_client_instance(ec2_client, target, security_group_id, subnet_id):
if 'machine_type' in target:
machine_type = target['machine_type']
elif target['virt'] == 'hvm':
machine_type = 't2.medium' if cl_args.fast else 't2.micro'
machine_type = 't2.medium'
else:
# 32 bit systems
machine_type = 'c1.medium' if cl_args.fast else 't1.micro'
machine_type = 'c1.medium'
if 'userdata' in target.keys():
userdata = target['userdata']
else: