JordanMilne / Advocate

An SSRF-preventing wrapper around Python's requests library. Advocate is no longer maintained, please fork and rename if you would like to continue work on it.
Other
92 stars 17 forks source link

Tests broken with requests 2.9.1 #4

Closed JordanMilne closed 8 years ago

JordanMilne commented 8 years ago

Seems to have something to do with the new usage of @pytest.fixture and our wrapper for requests' tests that auto-passes tests that call Session.mount(). I'm guessing fixture uses introspection to figure out what fixtures to add in based on arg names, but our wrapper uses *args, **kwargs.