I am facing an issue wherein when I run the test on Git pipeline it fails cuz the VCR cassette attempts for the http requests while the VCR before_playback replacement is going on. It later matches the requests but by them the test already fails due to the network error from the HTTP request.
One more thing to notice is that allow_http_connections_when_no_cassette is set to false.
VCR.configure do |c|
c.allow_http_connections_when_no_cassette = false
This is how we run the TC on the pipeline: RAILS_ENV=test JRUBY_OPTS="--debug" RD_PROF_TOP=10 TAG_PROF=type COVERAGE=true FDOC=1 RD_PROF=1 bundle exec rspec -fd
question from:
https://stackoverflow.com/questions/65919849/vcr-attempts-for-http-request-and-throws-error-before-matching-the-request-in-th 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…