From b963c0cfcf8f766c81c8fbde53048e1e2aa6da3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 2 Jul 2021 19:55:34 +0200 Subject: [PATCH] dev-python/vcrpy: Port to py3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/vcrpy/vcrpy-4.1.1.ebuild | 35 ++++++++++++++++------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/dev-python/vcrpy/vcrpy-4.1.1.ebuild b/dev-python/vcrpy/vcrpy-4.1.1.ebuild index d110bfca31a64..e54023e451acf 100644 --- a/dev-python/vcrpy/vcrpy-4.1.1.ebuild +++ b/dev-python/vcrpy/vcrpy-4.1.1.ebuild @@ -3,8 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) - +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="Automatically mock your HTTP interactions to simplify and speed up testing" @@ -32,20 +31,24 @@ BDEPEND=" distutils_enable_tests pytest -src_prepare() { - # tests requiring Internet - rm tests/integration/test_aiohttp.py || die - rm tests/integration/test_boto.py || die - sed -e 's:test_flickr_should_respond_with_200:_&:' \ - -e 's:test_amazon_doctype:_&:' \ - -i tests/integration/test_wild.py || die - sed -e 's:testing_connect:_&:' \ - -i tests/unit/test_stubs.py || die - - distutils-r1_src_prepare -} - python_test() { + local deselect=( + # these tests require Internet + tests/integration/test_aiohttp.py + tests/integration/test_boto.py + tests/integration/test_httpx.py + tests/integration/test_wild.py::test_flickr_should_respond_with_200 + tests/integration/test_wild.py::test_amazon_doctype + tests/unit/test_stubs.py::TestVCRConnection::testing_connect + + # probably unhappy about ssl module being more strict now + 'tests/integration/test_httplib2.py::test_effective_url[https]' + 'tests/integration/test_requests.py::test_effective_url[https]' + 'tests/integration/test_requests.py::test_redirects[https]' + 'tests/integration/test_urllib2.py::test_effective_url[https]' + 'tests/integration/test_urllib3.py::test_redirects[https]' + ) + local -x REQUESTS_CA_BUNDLE=$("${EPYTHON}" -m pytest_httpbin.certs) - pytest -vv || die "Tests fail with ${EPYTHON}" + epytest ${deselect[@]/#/--deselect } }