Jamie Lennox
Jamie Lennox
I'm not sure why it only shows up on python 2.6, i'm guessing it's something to do with the way httplib handles connections. In python2.7+ you get sent the entire...
Sorry for how these are combined, my biggest rant about github is not being able to do them as dependencies, but the code is intertwined so I can't completely separate...
The majority of discussion around this happened long before the stabilization of the metrics APIs and the OTLP protocol for metrics. Is there an appetite now for instating something like...
have a look at my branch taskgroups for my ideas. If you keep a group simply as a task that performs other tasks then the flow of the library changes...
+1 - come on sumo. If you don't want to open source this package that's a business decision. But using github simply to host a README to where to download...
This patch adds ability to access original requests request for inspection. I would have submitted it via gerrit but registration process is overly complicated. I hope you'll find this useful....
Sorry the gerrit is so difficult, i thought it was just a launchpad sign in then add a public key but it has been a while since i've done it....
The easy half, i'll wait for your ack before commiting: https://review.openstack.org/#/c/300254/ Launchpad Details: [#LPC](https://bugs.launchpad.net/requests-mock/+bug/1564205/comments/3) Jamie Lennox - 2016-04-01 00:07:01 +0000
This is an example we use requests_request for: self.assertEquals(history[0].requests_request.files, {'0': '123', '1': '456'}) self.assertEquals(history[0].requests_request.headers, {'Host': 'example.com'}) Launchpad Details: [#LPC](https://bugs.launchpad.net/requests-mock/+bug/1564205/comments/4) kolya - 2016-04-01 02:14:23 +0000
To be honest, I would have preferred to have full access to Request instead of PreparedRequest. From unit testing perspective I do not really care what requests does internally -...