Skip to content

Commit 7b3382a

Browse files
committed
Update configs
1 parent aa3d255 commit 7b3382a

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

.evergreen/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ functions:
179179
export AWS_DEFAULT_REGION="${fle_aws_region}"
180180
fi
181181
export CSOT_SPEC_TESTS=1
182-
TEST_CMD="bundle exec rspec spec/spec_tests/client_side_operations_timeout_spec.rb" \
182+
TEST_CMD="bundle exec rspec spec/spec_tests/client_side_operations_timeout_spec.rb --format Rfc::Riff --format RspecJunitFormatter --out tmp/rspec.xml" \
183183
.evergreen/run-tests.sh
184184
185185
"export FLE credentials":
@@ -1200,7 +1200,7 @@ buildvariants:
12001200

12011201
- matrix_name: "mongo-5.x"
12021202
matrix_spec:
1203-
ruby: ["ruby-3.3", "ruby-3.2", "jruby-9.4"]
1203+
ruby: ["ruby-3.3", "ruby-3.2"]
12041204
mongodb-version: ['5.0']
12051205
topology: ["standalone", "replica-set", "sharded-cluster"]
12061206
os: ubuntu2004
@@ -1211,7 +1211,7 @@ buildvariants:
12111211
- matrix_name: "mongo-4.x"
12121212
matrix_spec:
12131213
ruby: ["ruby-3.0", "ruby-2.7"]
1214-
mongodb-version: ['4.4', '4.2', '4.0']
1214+
mongodb-version: ['4.4', '4.0']
12151215
topology: ["standalone", "replica-set", "sharded-cluster"]
12161216
os: ubuntu2004
12171217
display_name: "${mongodb-version} ${topology} ${auth-and-ssl} ${ruby}"
@@ -1341,7 +1341,7 @@ buildvariants:
13411341
matrix_spec:
13421342
stress: on
13431343
ruby: "ruby-2.7"
1344-
mongodb-version: ['4.2', '4.0', '3.6']
1344+
mongodb-version: ['4.4', '4.0', '3.6']
13451345
topology: replica-set
13461346
os: ubuntu2004
13471347
display_name: "${mongodb-version} ${topology} stress ${ruby}"

.evergreen/config/common.yml.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ functions:
176176
export AWS_DEFAULT_REGION="${fle_aws_region}"
177177
fi
178178
export CSOT_SPEC_TESTS=1
179-
TEST_CMD="bundle exec rspec spec/spec_tests/client_side_operations_timeout_spec.rb" \
179+
TEST_CMD="bundle exec rspec spec/spec_tests/client_side_operations_timeout_spec.rb --format Rfc::Riff --format RspecJunitFormatter --out tmp/rspec.xml" \
180180
.evergreen/run-tests.sh
181181

182182
"export FLE credentials":

.evergreen/config/standard.yml.erb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
# these are used for testing against a few recent ruby versions
99
recent_rubies = %w( ruby-3.3 ruby-3.2 jruby-9.4 )
1010

11+
recent_mri_rubies = %w( ruby-3.3 ruby-3.2 )
12+
1113
# this is a list of the most recent 3.x and 2.x MRI ruby versions
1214
sample_mri_rubies = %w( ruby-3.3 ruby-2.7 )
1315

@@ -81,7 +83,7 @@ buildvariants:
8183

8284
- matrix_name: "mongo-5.x"
8385
matrix_spec:
84-
ruby: <%= recent_rubies %>
86+
ruby: <%= recent_mri_rubies %>
8587
mongodb-version: ['5.0']
8688
topology: <%= topologies %>
8789
os: ubuntu2004

spec/integration/srv_monitoring_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
describe 'SRV Monitoring' do
77
clean_slate_for_all
88
require_external_connectivity
9+
require_mri
910

1011
context 'with SRV lookups mocked at Resolver' do
1112
let(:srv_result) do

spec/integration/time_zone_querying_spec.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
require 'spec_helper'
55

66
describe 'Time zone querying' do
7+
require_mri
8+
79
let(:collection) { authorized_client[:time_zone_querying] }
810

911
before do

spec/integration/transaction_pinning_spec.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
require 'spec_helper'
55

66
describe 'Transaction pinning' do
7+
require_mri
8+
79
let(:client) { authorized_client.with(max_pool_size: 4) }
810
let(:collection_name) { 'tx_pinning' }
911
let(:collection) { client[collection_name] }

spec/integration/versioned_api_examples_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require 'spec_helper'
55

66
describe 'Versioned API examples' do
7-
7+
require_mri
88
# Until https://jira.mongodb.org/browse/RUBY-1768 is implemented, limit
99
# the tests to simple configurations
1010
require_no_auth

0 commit comments

Comments
 (0)