Sebastian Pipping
a72d81cc9d
[Revert me] Experiment with Python-Ubuntu combinations
2023-05-21 23:20:21 +02:00
Sebastian Pipping
470dd96c68
[Revert me] Debug Python SSL version
2023-05-21 23:20:21 +02:00
Sebastian Pipping
612f597aa9
[Revert me] Trigger on push to any branch
2023-05-21 23:12:23 +02:00
Sebastian Pipping
47be90add8
Stop installing libgnutls28-dev
2023-05-21 23:12:23 +02:00
Sebastian Pipping
ab3d8bf7c9
test_vcr.py: Clarify that test_vcr_before_record_request_params is an offline test
2023-05-20 16:21:01 +02:00
Sebastian Pipping
ec4fb9b0b3
tox.ini: Cover both urllib3 v1 and v2
2023-05-20 16:21:01 +02:00
Sebastian Pipping
f83f83a0c4
tox.ini: Drop needless "boto3: urllib3"
...
boto3 depends on botocore which in turn depends on urllib3.
2023-05-20 16:21:01 +02:00
Sebastian Pipping
ef2e1d895a
Fix VCRHTTPResponse for requests.cookies.extract_cookies_to_jar
2023-05-20 16:21:01 +02:00
Sebastian Pipping
384d47714e
Make test "test_cookies" more mean and helpful
2023-05-20 16:21:01 +02:00
Sebastian Pipping
3547ed966f
Make VCRHTTPResponse interface satisfy urllib3.response.HTTPResponse
2023-05-20 16:21:01 +02:00
Sebastian Pipping
f1b921c211
Respect urllib3.response.HTTPResponse.data
2023-05-20 16:21:01 +02:00
Sebastian Pipping
ea5e20edc7
Make test_headers robust with regard to order of headers
2023-05-20 16:21:01 +02:00
Sebastian Pipping
b09c271a76
Tolerate urllib3.response.HTTPResponse.msg being None
2023-05-20 16:21:01 +02:00
Sonny V
ef7cb8cf50
build(tox.ini): revert pinning urllib to <2
...
In #690 a quick fix was introduced to get a green ci, this change should no longer be required.
2023-05-20 16:21:01 +02:00
Sonny V
c78b0c81e9
fix: use urllib3.connection where needed.
...
Since urllib3 v2 the re-export of connection.HTTPConnection in
urllib3.connectionpool was removed.
In this commit we use urllib3.connection where needed. Some references
to connectionpool.HTTPConnection are still there for backward
compatibility.
Closes #688
2023-05-20 16:21:01 +02:00
Sebastian Pipping
1a3bc67c7c
Merge pull request #701 from kevin1024/run-actions-on-push-to-topic-branches
...
Allow triggering CI manually
2023-05-17 18:01:28 +02:00
Sebastian Pipping
aeff51bd79
main.yml: Allow triggering CI manually
2023-05-17 16:45:13 +02:00
Sebastian Pipping
e9f0ede9dd
main.yml: Drop superflous specification of branches
2023-05-17 16:44:54 +02:00
Sebastian Pipping
0235eab766
Merge pull request #698 from kevin1024/reduce-legacy
...
Drop support for botocore <1.11.0 and requests <2.16.2 (fixes #693 )
2023-05-15 15:55:15 +02:00
Sebastian Pipping
31c8dc0a1e
Drop support for requests <2.16.2
2023-05-15 14:06:26 +02:00
Sebastian Pipping
24af48d468
Drop support for botocore <1.11.0
2023-05-15 14:06:26 +02:00
Kian-Meng Ang
44359bfe43
Fix typo, succeedes -> succeeds ( #672 )
...
Found via `codespell`.
2023-05-13 17:03:27 +02:00
Jair Henrique
14cef83c15
Move some tests to use mockbin instead httpbin
2023-05-11 17:03:54 -03:00
Jair Henrique
77da67ef0a
Remove duplicated fixture
2023-05-11 10:05:50 -03:00
dependabot[bot]
58329f812b
build(deps): bump actions/checkout from 3.1.0 to 3.5.2
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 3.1.0 to 3.5.2.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v3.1.0...v3.5.2 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-05-08 09:15:50 -03:00
Sebastian Pipping
06913ce21a
tox.ini: Exclude ./venv/ from flake8
2023-05-05 10:14:46 -03:00
Sebastian Pipping
4994c53590
Fix formatting with regard to black 23.3.0
2023-05-05 10:14:46 -03:00
Sebastian Pipping
1d90853f3b
tox.ini: Quick-fix the CI for recent tox and recent urllib3
2023-05-05 10:14:46 -03:00
Terseus
42d79b1102
Restore the pytest-httpbin package in tox.ini
...
The branch with the fix for HTTPS redirects is included in v1.0.1
See https://github.com/kevin1024/pytest-httpbin/releases/tag/v1.0.1
2022-11-01 09:08:59 -03:00
Jair Henrique
cef85a4986
remove pytest deprecation warning for yield_fixture
2022-10-31 22:44:26 -03:00
Terseus
964615af25
Include how to use record_on_exception in the docs
2022-10-31 22:43:03 -03:00
Terseus
3b6d79fc0b
Prevent Sphinx warning about language = None
...
Since version 5.x Sphinx triggers a warning when `language = None`, this
caused `tox -e docs` to fail.
Set it to "en".
See https://github.com/sphinx-doc/sphinx/pull/10481
2022-10-31 22:43:03 -03:00
Terseus
f48922ce09
Fix not calling all the exit stack when record_on_exception is False
...
The initial technique to implement `record_on_exception=False` was to
not emptying the generator returned by
`CassetteContextDecorator._patch_generator` when an exception happens to
skip the `cassette._save` call, however this had the side effect of not
emptying the `ExitStack` created inside the generator which contains the
`_patch.__exit__` calls to remove the patches.
This was innocuous in CPython, which uses a reference counting garbage
collector so the `ExitStack` was immediately collected after losing
scope and therefore its `__exit__` method executed.
Pypy, on the other hand, uses a generational garbage collector so its
objects may survive more time, enough for the `ExitStack` not called
until much later, which may cause the patches to live more than expected
when `record_on_exception=False`.
This was found because the test
`test_nesting_context_managers_by_checking_references_of_http_connection`
was failing because it was executed after
`test_dont_record_on_exception`.
Now the cassette instance is saved inside the `CassetteContextDecorator`
instance to have better control on where to save the cassette, and moved
the `cassette._save` call from the `_patch_generator` method to the
`__exit__` method to be free to empty the generator and remove the
patches always.
2022-10-31 22:43:03 -03:00
Terseus
2980bfccde
Fix lint errors
2022-10-31 22:43:03 -03:00
Dan Passaro
7599f4d50a
Fix Py3 tests using b'' literal
2022-10-31 22:43:03 -03:00
Dan Passaro
995020bf06
Add record_on_exception flag.
...
Defaults to True, which maintains historical behavior.
Fixes #205 .
2022-10-31 22:43:03 -03:00
Jair Henrique
423ccaa40b
Set fail-fast to false on CI
2022-10-31 22:18:30 -03:00
Josef
526fdbb194
Add Path handling to use_cassette and to filesystem.py persister
...
* now it is possible to use path from pathlib
2022-10-31 22:15:14 -03:00
Evgeni Golov
511d0ab855
add python 3.11 support
2022-10-31 09:00:35 -03:00
Jair Henrique
60ac99c907
Run lint on CI
2022-10-14 10:53:54 -03:00
dependabot[bot]
57dee93e11
build(deps): bump actions/checkout from 3.0.2 to 3.1.0
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 3.0.2 to 3.1.0.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v3.0.2...v3.1.0 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2022-10-11 10:34:41 -03:00
Jair Henrique
0eece7f96e
Add isort to code lint
2022-10-09 11:35:37 -03:00
Chris Wesseling
eb59d871b4
Handles empty responses with gzip/deflate encoding.
...
Closes #661
2022-10-09 11:04:44 -03:00
Kevin McCarthy
f3f66086a1
Release v4.2.1
v4.2.1
2022-08-31 14:14:32 -05:00
Ville Skyttä
c3767c2fdb
fix(aiohttp): record body of first request in redirect chain
...
The first could be e.g. a POST with one, only the remaining ones are
expected to be GETs without one.
2022-08-31 14:11:55 -05:00
Joel Shprentz
6fff3ab952
Add match_on option scheme in configuration.rst
...
Minor documentation corrections: The list of ``match_on`` options was missing ``scheme``. Also, an unneeded period appeared after URI.
2022-08-04 08:42:36 -03:00
Tim Gates
35378d046f
docs: Fix a few typos
...
There are small typos in:
- tests/integration/test_record_mode.py
- tests/integration/test_stubs.py
- vcr/stubs/__init__.py
Fixes:
- Should read `repercussions` rather than `repurcussions`.
- Should read `superclass` rather than `superclas`.
- Should read `cassette` rather than `casssette`.
Signed-off-by: Tim Gates <tim.gates@iress.com >
2022-08-04 08:42:13 -03:00
Kevin McCarthy
9c46831a8e
release 4.2.0
v4.2.0
2022-06-29 16:53:45 -05:00
dependabot[bot]
fe596447ec
build(deps): bump actions/setup-python from 3 to 4
...
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from 3 to 4.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](https://github.com/actions/setup-python/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2022-06-23 08:29:52 -03:00
Andre Ambrosio Boechat
be1035fd5d
Check if query params in the string URL are also included in the final params
2022-06-13 09:54:20 -03:00