From d1753e46f9cd43e966a6296d1bf7bb48cbd11ed5 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Fri, 17 May 2019 11:40:20 -0700 Subject: [PATCH] Allow magic profile name none for configuring test farm tests. (#7069) * Allow magic profile name none. * Naming is hard. --- tests/letstest/multitester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/letstest/multitester.py b/tests/letstest/multitester.py index 39f8739df..51edd2671 100644 --- a/tests/letstest/multitester.py +++ b/tests/letstest/multitester.py @@ -94,7 +94,7 @@ cl_args = parser.parse_args() # assumes naming: = .pem KEYFILE = cl_args.key_file KEYNAME = os.path.split(cl_args.key_file)[1].split('.pem')[0] -PROFILE = cl_args.aws_profile +PROFILE = None if cl_args.aws_profile == 'SET_BY_ENV' else cl_args.aws_profile # Globals #-------------------------------------------------------------------------------