downgrading to webmock 3.18.0

Identifying an issue when running datadog and webmock in tandem, and
running webmock 3.18.1.
This commit is contained in:
HoneyryderChuck 2023-04-28 11:18:02 +01:00
parent ce6c1d2ce5
commit 5f079f8fc0
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ group :test do
if RUBY_VERSION < "2.3.0"
gem "webmock", "< 3.15.0"
else
gem "webmock"
gem "webmock", "< 3.18.1"
end
gem "nokogiri"
gem "websocket-driver"

View File

@ -88,7 +88,7 @@ PARALLEL=1 bundle exec rake test
# third party modules
# Testing them only with main ruby, as some of them work weird with other variants.
if [[ ${RUBY_VERSION:0:3} = "3.2" ]] && [[ "$RUBY_ENGINE" = "ruby" ]]; then
if [[ "$RUBY_ENGINE" = "ruby" ]]; then
COVERAGE_KEY="$RUBY_ENGINE-$RUBY_VERSION-integration-tests" bundle exec rake integration_tests
fi