-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ExVCR is trying to match request even though i'm not using use_cassete #136
Comments
I ran into a similar problem and found that if I configured ExVCR to "clear mocks" then the mocking behaviour would be cleared between tests. use ExVCR.Mock, adapter: ExVCR.Adapter.Hackney, clear_mock: true |
@dwhelan oh, thanks, i will try that. |
unfortunately, that didn't work 😞 i'm still getting
|
This didn't work for me either. For reference, I've got an umbrella application, but all my errors seem to be happening within the same umbrella application. |
I'm also using exvcr 0.10.0. |
I've updated to 0.10.3 and still seeing the same problems. |
I'm experiencing the same issue after adding SendGrid to tests that do not use ExVCR. When running a single test file by itself the problem does not occur. Adding clear_mock did not work. |
For posterity: syntax should be |
Hi there, i'm trying to do some integration testing hitting a real 3rd party service (Stripe) and not a cassette, so i'm not using
use_cassette
or anything like that but still getting aRequestNotMatchError
with a "previous" cassette (oembed-youtube). is there a way to disable ExVCR or to let it know i'm not asking to record a new cassette? (it works if i just runmix test PATH/TO/TEST.exs
) but not when runningmix test
The text was updated successfully, but these errors were encountered: