Kevin McCarthy
Kevin McCarthy
I'm using an in-memory database to keep track of all the executions, which sucks. Come up with a better solution
urllib (though deprecated) uses all kinds of weird httplib compat classes that aren't stubbed properly by vcr. I would like to support this someday.
They are creating their own verifiedhttpsconnection, we would need to patch that as well. https://github.com/campaignmonitor/createsend-python/blob/master/createsend/utils.py Example traceback: ``` python File "/Users/djgoku/development/virtualenv/please_work/lib/python2.7/site-packages/createsend/client.py", line 33, in campaigns response = self._get(self.uri_for("campaigns")) File "/Users/djgoku/development/virtualenv/please_work/lib/python2.7/site-packages/createsend/createsend.py",...
httpbin is deployed in production using gunicorn. The intent of pytest-httpbin is to provide a local copy of the hosted version of httpbin. Therefore, to keep everything as similar as...