summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* git tag after releasepython3Gabriel Falcão2018-03-071-0/+1
|
* show missing test coverage reportGabriel Falcão2018-03-071-0/+2
|
* typoGabriel Falcão2018-03-071-3/+4
|
* NEWSGabriel Falcão2018-03-071-1/+7
|
* nose pluginsGabriel Falcão2018-03-071-0/+2
|
* removed non-ascii characters (#321)Tom White2018-03-076-6/+6
|
* correct spelling mistake (#326)Edward Betts2018-03-071-1/+1
|
* API compability between Python 2 and Python 3 (#328)cclauss2018-03-071-3/+3
|
* Update version classifiers (#329)Hugo2018-03-077-23/+24
| | | | | | | | * Ignore IDE metadata * Python 2.6 is EOL and was dropped in 2015 * Use automatic formatters
* Fixing issue with random binary data sent in the query string. (#330)Andres Riancho2018-03-071-1/+1
|
* Merge branch 'kouk-content-length'Gabriel Falcão2017-02-160-0/+0
|\
| * Merge branch 'content-length' of github.com:kouk/HTTPretty into ↵Ц§¡δəητ2017-02-162-69/+27
| |\ | | | | | | | | | kouk-content-length
| | * Merge branch 'master' of git://github.com/gabrielfalcao/httpretty into ↵Konstantinos Koukopoulos2014-05-193-9/+34
| | |\ | | | | | | | | | | | | content-length
| | * | add a test for content-length header with callable bodyKonstantinos Koukopoulos2014-04-071-0/+18
| | | |
| | * | don't overwrite content-length header with callable bodyKonstantinos Koukopoulos2014-04-071-3/+5
| | | |
* | | | Merge pull request #165 from akun/masterGabriel Falcão2017-02-162-1/+4
|\ \ \ \ | | | | | | | | | | Fixed an error when "Content-Length" is not int like
| * | | | Fixed an error when "Content-Length" is not int likeakun2014-05-192-1/+4
| | |_|/ | |/| |
* | | | add a test for content-length header with callable bodyKonstantinos Koukopoulos2017-02-161-61/+20
| | | |
* | | | don't overwrite content-length header with callable bodyKonstantinos Koukopoulos2017-02-161-8/+7
| |/ / |/| |
* | | Squashed commit of the following:Andrew Gross2016-10-115-0/+122
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | commit 352339b3ee12e120d044340c075a32ddb6656e89 Author: Andrew Gross <andrew.w.gross@gmail.com> Date: Tue Oct 11 19:00:22 2016 -0400 Remove unused imports commit 226d294d9bdcb396a06c0df534ad94d56ccc8e86 Author: Andrew Gross <andrew.w.gross@gmail.com> Date: Tue Oct 11 18:54:20 2016 -0400 Patch out urllib monkeypatching when installed, adds tests for behavior
* | | Update HTTP call recording to properly send headers being testedAndrew Gross2016-10-111-1/+5
| | |
* | | fixing failing testGabriel Falcão2016-05-301-0/+9
| | |
* | | Merge pull request #169 from chris-martin/unittest_TestCase_decoratorGabriel Falcão2016-05-262-3/+112
|\ \ \ | | | | | | | | Decorate unittest.TestCase setUp/tearDown methods
| * | | Decorate unittest.TestCase setUp/tearDown methodsChris Martin2014-05-232-3/+112
| |/ / | | | | | | | | | | | | | | | | | | When the class being decorated by httprettified inherits from unittest.TestCase, enable HTTPretty in setUp rather than decorating each test separately. This lets users register their HTTP mock entries in setUp if they want.
* | | Merge pull request #173 from jamielennox/parsed_bodyGabriel Falcão2016-05-261-2/+14
|\ \ \ | | | | | | | | Reparse the request body when setting body
| * | | Reparse the request body when setting bodyJamie Lennox2014-06-061-2/+14
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Whenever the body property is set the parsed_body should be attempted to be recalculated. I'm not convinced this is the best way to solve this problem, though it would appear that anything else would require more extensive refactoring. Issue: #172
* | | Merge pull request #285 from hufman/use_tempfileGabriel Falcão2016-05-263-10/+23
|\ \ \ | | | | | | | | Use a tempfile instead of a StringIO object
| * | | Use a tempfile instead of a StringIO objectWalter Huf2016-02-033-10/+23
| | | | | | | | | | | | | | | | | | | | | | | | This provides a socket.fileno(), so libraries that call select.poll() work properly. Also supports mocking huge responses larger than memory, if needed.
* | | | Merge pull request #287 from hufman/dynamic-content-lengthGabriel Falcão2016-05-262-1/+11
|\ \ \ \ | | | | | | | | | | Encode callable body length as str and not bytes
| * | | | Encode callable body length as str and not bytesWalter Huf2016-02-062-1/+11
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | The bytes() constructor, when given an integer, creates a bytes object of that length, instead of casting the number to a string representation. This change uses str() to cast the integer, and then relies on the later utf8() call to convert it to bytes.
* | | | Merge pull request #293 from bhodorog/bugfix/recording-uses-headers-bodyGabriel Falcão2016-05-263-4/+16
|\ \ \ \ | | | | | | | | | | Use body and headers when recording upstream requests
| * | | | Use body and headers when recording upstream calls.Bogdan Hodorog2016-04-063-4/+16
| |/ / /
* | | | Merge pull request #294 from grahamc/patch-1Gabriel Falcão2016-05-261-1/+3
|\ \ \ \ | | | | | | | | | | Pass `tests_require` list of packages
| * | | | Pass `tests_require` list of packagesGraham Christensen2016-04-141-1/+3
| |/ / / | | | | | | | | `tests_require` accepts a list of packages, while it was being passed a tuple of packages and dependency links.
* | | | Merge pull request #298 from onovy/masterGabriel Falcão2016-05-262-2/+2
|\ \ \ \ | |/ / / |/| | | Renamed prefixfree.min.js to prefixfree.js because it's not minified
| * | | Renamed prefixfree.min.js to prefixfree.js because it's not minifiedOndřej Nový2016-05-242-2/+2
|/ / /
* | | quit using steadymark, from now on HTTPretty will rely on doctests within ↵Gabriel Falcão2016-01-202-9/+3
| | | | | | | | | | | | the .rst files
* | | readmeGabriel Falcão2016-01-202-10/+19
| | |
* | | not running lint with unit testsGabriel Falcão2016-01-201-1/+1
| | |
* | | New release: 0.8.140.8.14Gabriel Falcão2016-01-185-6/+6
| | |
* | | pep8Gabriel Falcão2016-01-181-2/+3
| | |
* | | Merge pull request #262 from darjus-amzn/masterGabriel Falcão2016-01-121-1/+3
|\ \ \ | | | | | | | | Make Jython SRE_Pattern object recognized
| * | | Make Jython SRE_Pattern object recognizedDarjus Loktevic2015-10-081-1/+3
| | | |
* | | | Merge pull request #279 from yarikoptic/bf-3.xGabriel Falcão2016-01-052-4/+4
|\ \ \ \ | | | | | | | | | | BF: no need to byte_type an in which later %s-ed, assume sending bytes registers bytes
| * | | | BF: PY3 etc -- no need to byte_type an in which later %s-ed, assume sending ↵Yaroslav Halchenko2015-12-152-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bytes registers bytes also adjusted bogus shebang to not be real
* | | | | Merge pull request #277 from jirikuncar/release-v0.8.130.8.13Gabriel Falcão2016-01-055-7/+7
|\ \ \ \ \ | | | | | | | | | | | | New release: 0.8.13
| * | | | | New release: 0.8.13Jiri Kuncar2015-12-145-7/+7
| |/ / / /
* | | | | Merge pull request #281 from grahamc/patch-1Gabriel Falcão2016-01-051-2/+0
|\ \ \ \ \ | |/ / / / |/| | | | Remove the false Python3 support classifier
| * | | | Remove the false Python3 support classifierGraham Christensen2016-01-051-2/+0
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As the readme states: Due to big API incompatibility between python 3.3, 3.4 and 3.5, the author of HTTPretty is not supporting python3 officially. You will notice that the travis build for python 3 might be broken, and while pull requests fixing py3 support are most welcome, it is still not official at least for now. it is preferable to not advertise support when it doesn't practically exist.
* | | | readmeGabriel Falcão2015-12-141-0/+7
| | | |