Kevin McCarthy
3a46616ba6
bump version to 1.9.0
v1.9.0
2016-07-16 08:07:51 -10:00
Adam Chainz
37665581e0
Convert readthedocs links for their .org -> .io migration for hosted projects
...
As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/ ) ‘Securing subdomains’:
> Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard.
Test Plan: Manually visited all the links I’ve modified.
2016-07-13 23:24:04 +01:00
Kevin McCarthy
57df0c6921
unzip bodies before comparing. Fixes #261
2016-07-03 17:27:52 -10:00
Kevin McCarthy
ddb29745a9
Merge pull request #247 from dedsm/boto3_support
...
Adding support for boto3
2016-07-02 14:00:02 -10:00
David de Sousa
ac7c9244cc
Running boto3 tests in travis
2016-06-27 01:39:49 +02:00
David de Sousa
6da7cd0ea5
Fixing pep8 errors in boto tests
2016-06-27 01:39:49 +02:00
bogdan barna
24df79b75f
boto3 integration tests
2016-06-27 01:39:49 +02:00
David de Sousa
0800b99214
Adding support for boto3
2016-06-27 01:39:49 +02:00
Kevin McCarthy
3dad89df3f
Merge pull request #260 from foobarna/fix-tests
...
fix tests in stubs, requests ssl verification and httpbin+flask
2016-06-24 06:48:51 -10:00
bogdan barna
5c9b0b4ccb
fix tests in stubs, requests ssl verification and httpbin+flask
2016-06-24 11:43:01 +03:00
Kevin McCarthy
5a848d277e
Merge pull request #259 from nickdirienzo/master
...
Fix deepcopy issue for response headers when `decode_compressed_response` is enabled
2016-06-21 20:45:27 -10:00
Nick DiRienzo
c88c738df9
Removed requests usage from test
2016-06-21 07:14:51 -07:00
Nick DiRienzo
9a8067d8e7
Renamed inside2 to inside
2016-06-21 07:00:53 -07:00
Nick DiRienzo
787c6bdb77
Fix flake8 issue
2016-06-21 06:54:05 -07:00
Nick DiRienzo
c3298c25a3
Updated comments
2016-06-20 23:43:47 -07:00
Nick DiRienzo
2f4c803678
Added a note on the deepcopy
2016-06-20 23:36:51 -07:00
Nick DiRienzo
60145983bf
Added regression test
2016-06-20 23:23:31 -07:00
Nick DiRienzo
b5c27f99d1
Move deepcopy higher to not mutate original headers
2016-06-20 16:57:40 -07:00
Ivan Malison
1ef099a13e
v 1.8.0
v1.8.0
2016-06-09 12:16:14 -07:00
Kevin McCarthy
34d07406f9
missed a httpbin call
2016-05-01 17:16:05 -10:00
Kevin McCarthy
e269c77670
Merge pull request #253 from jayvdb/no-pytest-localserver
...
Remove pytest-localserver from test dependencies
2016-05-01 16:43:09 -10:00
John Vandenberg
889edccecb
Remove pytest-localserver from test dependencies
...
pytest-localserver is no longer needed after
the switch to using pytest-httpbin.
2016-05-02 09:23:06 +07:00
Kevin McCarthy
37c8cbca91
pep8
2016-05-01 14:44:13 -10:00
Aliaksandr Buhayeu
9daf301deb
Fix for Serialization errors with JSON adapter
...
This patch aims to fix the issue#222,
where json data in request can not be serialized
because of TypeError in py3
2016-05-01 14:22:17 -10:00
Kevin McCarthy
528c9e7b1a
Merge pull request #149 from kevin1024/pytest-httpbin
...
WIP: add pytest-httpbin
2016-05-01 14:19:54 -10:00
Kevin McCarthy
4e36997e1a
Use pytest-httpbin
...
This will help the test flakiness and speed up test runs.
2016-05-01 13:50:04 -10:00
Kevin McCarthy
c571c932c9
Merge pull request #252 from jayvdb/travis-more-versions
...
Add Python 3.5 and PyPy 3 to Travis
2016-05-01 07:20:48 -10:00
John Vandenberg
d060a68ffd
Add Python 3.5 and PyPy 3 to Travis
2016-05-01 07:54:59 +07:00
Kevin McCarthy
cfc483a08d
Merge pull request #244 from jaysonsantos/master
...
Avoid concatenating bytes with strings
2016-04-26 08:59:07 -04:00
Jayson Reis
632af2e41a
Fix/ignore some flake errors
2016-01-20 12:28:46 +01:00
Jayson Reis
7fdfce65ee
Add test to make sure we can post chunked binary data
2016-01-20 12:17:28 +01:00
Jayson Reis
7cc513e1d2
Avoid concatenating bytes with strings
2016-01-19 14:19:03 +01:00
Ivan 'Goat' Malison
4f3c5c0a6e
Merge pull request #243 from kevin1024/response_filtering
...
allow filtering by response
2016-01-11 17:12:44 -08:00
Ivan Malison
43b3411e6c
Fix travis check for flakes
2016-01-11 17:00:02 -08:00
Ivan Malison
99d4150df8
allow filtering by response
2016-01-11 16:07:44 -08:00
Kevin McCarthy
8d5993eced
Merge pull request #242 from koobs/patch-1
...
Exclude __pycache__ dirs & compiled files in sdist
2016-01-10 07:35:20 -10:00
Kubilay Kocak
8a1b7c6532
Exclude __pycache__ dirs & compiled files in sdist
...
The current vcrpy sdist on PyPI includes __pycache__ dirs and compiled files which causes tests to fail when running tests via setup.py test
import file mismatch:
imported module 'test_persist' has this __file__ attribute:
/Users/imalison/Projects/vcrpy/tests/unit/test_persist.py
which is not the same as the test file we want to collect:
/usr/home/user/repos/freebsd/ports/devel/py-vcrpy/work/vcrpy-1.7.4/tests/unit/test_persist.py
HINT: remove __pycache__ / .pyc files and/or use a unique basename for your test file modules
This change recursively excludes these directories and files from future source distributions
2016-01-11 02:27:41 +11:00
Ivan 'Goat' Malison
3459d95d4f
Merge pull request #234 from tobiowo/decode-compressed-response
...
Decode compressed response option
2015-12-31 10:18:34 -08:00
Ivan 'Goat' Malison
ebaae9bed7
Merge pull request #240 from abhinav/old-tornado
...
Fix crashing with Tornado 3
2015-12-31 10:17:01 -08:00
Abhinav Gupta
d780bc04dd
Fix Tornado support behavior for Tornado 3.
...
Resolves #235 .
2015-12-19 18:18:20 -08:00
Kevin McCarthy
31c358c035
Merge pull request #238 from jayvdb/tox-travis
...
Use tox-travis
2015-12-12 10:51:07 -10:00
John Vandenberg
573c6eee0b
Use tox-travis
...
dc9cd42 introduced Travis checking of flakes using tox.
However tox.ini only defined 'flakes-py34', so Travis
was only invoking flake8 on Python 3.4, and invoking
py.test on other Python versions.
As tox factors only work properly on the default testenv,
use a generic tox environment 'flakes', and use tox-travis
to select the correct basepython.
2015-12-13 04:22:51 +11:00
Kevin McCarthy
70c92d05d9
Merge pull request #229 from jayvdb/flakes
...
Fix pyflakes and pep8 errors
2015-12-05 14:06:53 -10:00
Olutobi Owoputi
5d866dd77c
support python 3.4
2015-12-02 14:43:06 -08:00
Olutobi Owoputi
2d08358b5c
tests / docs for decode_compressed_response
2015-12-02 12:26:23 -08:00
Olutobi Owoputi
64397d7ecc
add decode_compressed_response option and filter
2015-12-02 12:25:36 -08:00
John Vandenberg
dc9cd4229b
Fix pyflakes and pep8 errors
...
Use extra asserts to use previously unused variables in tests,
such as `cass` and `response`.
Fix only pyflakes errors in docs/conf.py
2015-11-26 08:25:06 +11:00
Kevin McCarthy
6ae1b00207
Merge pull request #228 from jayvdb/travis-tox
...
Use tox for Travis-CI
2015-11-25 09:23:28 -05:00
John Vandenberg
54bb9aa27a
Use tox for Travis-CI
2015-11-25 15:51:25 +11:00
Aron Griffis
312ed2c234
Merge pull request #223 from jayvdb/jessie-fix
...
Fallback to importing from urllib3
2015-11-24 15:14:09 -05:00