From 6fe50f8e56bff9038c488e7a0a4e5f0d9136135c Mon Sep 17 00:00:00 2001 From: Emily Giurleo Date: Fri, 3 Jan 2020 15:24:49 -0500 Subject: [PATCH 1/3] pin mlaunch version --- .evergreen/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.evergreen/functions.sh b/.evergreen/functions.sh index 7f4602ed67..616bd39a7c 100644 --- a/.evergreen/functions.sh +++ b/.evergreen/functions.sh @@ -201,7 +201,7 @@ prepare_server_from_url() { install_mlaunch() { pythonpath="$MONGO_ORCHESTRATION_HOME"/python - pip install -t "$pythonpath" 'mtools[mlaunch]' + pip install -t "$pythonpath" -v 'mtools[mlaunch]==1.5.3' export PATH="$pythonpath/bin":$PATH export PYTHONPATH="$pythonpath" } From 0e25ed15b5949cbaf781ac608e8cb1e28a3fa41e Mon Sep 17 00:00:00 2001 From: Emily Giurleo Date: Fri, 3 Jan 2020 16:01:09 -0500 Subject: [PATCH 2/3] remove keyword argument from spec --- spec/integration/client_authentication_options_spec.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spec/integration/client_authentication_options_spec.rb b/spec/integration/client_authentication_options_spec.rb index f020906836..381d5bedc5 100644 --- a/spec/integration/client_authentication_options_spec.rb +++ b/spec/integration/client_authentication_options_spec.rb @@ -38,7 +38,7 @@ end end - shared_examples_for 'auth mechanism that uses database or default auth source' do |default_auth_source:| + shared_examples_for 'auth mechanism that uses database or default auth source' do |default_auth_source| context 'where no database is provided' do context 'with URI options' do let(:credentials) { "#{user}:#{pwd}@" } @@ -198,7 +198,7 @@ let(:auth_mech_sym) { :mongodb_cr } it_behaves_like 'a supported auth mechanism' - it_behaves_like 'auth mechanism that uses database or default auth source', default_auth_source: 'admin' + it_behaves_like 'auth mechanism that uses database or default auth source', 'admin' it_behaves_like 'an auth mechanism that doesn\'t support auth_mech_properties' end @@ -207,7 +207,7 @@ let(:auth_mech_sym) { :scram } it_behaves_like 'a supported auth mechanism' - it_behaves_like 'auth mechanism that uses database or default auth source', default_auth_source: 'admin' + it_behaves_like 'auth mechanism that uses database or default auth source', 'admin' it_behaves_like 'an auth mechanism that doesn\'t support auth_mech_properties' end @@ -216,7 +216,7 @@ let(:auth_mech_sym) { :scram256 } it_behaves_like 'a supported auth mechanism' - it_behaves_like 'auth mechanism that uses database or default auth source', default_auth_source: 'admin' + it_behaves_like 'auth mechanism that uses database or default auth source', 'admin' it_behaves_like 'an auth mechanism that doesn\'t support auth_mech_properties' end @@ -263,7 +263,7 @@ let(:auth_mech_sym) { :plain } it_behaves_like 'a supported auth mechanism' - it_behaves_like 'auth mechanism that uses database or default auth source', default_auth_source: '$external' + it_behaves_like 'auth mechanism that uses database or default auth source', '$external' it_behaves_like 'an auth mechanism with ssl' it_behaves_like 'an auth mechanism that doesn\'t support auth_mech_properties' end From 2f4662d20b89a51e55a6bdb541a2f35bef4be948 Mon Sep 17 00:00:00 2001 From: Emily Giurleo Date: Fri, 3 Jan 2020 18:06:47 -0500 Subject: [PATCH 3/3] Re-running tests