Diff urllib3-2.0.4 with a urllib3-2.0.5
/usr/portage/dev-python/urllib3/urllib3-2.0.5.ebuild 2023-10-09 14:52:30.396368373 +0300 | ||
---|---|---|
9 | 9 |
PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" ) |
10 | 10 |
PYTHON_REQ_USE="ssl(+)" |
11 | 11 | |
12 |
inherit distutils-r1 pypi |
|
12 |
inherit distutils-r1 multiprocessing pypi |
|
13 | 13 | |
14 | 14 |
DESCRIPTION="HTTP library with thread-safe connection pooling, file post, and more" |
15 | 15 |
HOMEPAGE=" |
... | ... | |
19 | 19 | |
20 | 20 |
LICENSE="MIT" |
21 | 21 |
SLOT="0" |
22 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" |
|
22 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" |
|
23 | 23 |
IUSE="brotli test zstd" |
24 | 24 |
RESTRICT="!test? ( test )" |
25 | 25 | |
... | ... | |
38 | 38 |
dev-python/brotlicffi[\${PYTHON_USEDEP}] |
39 | 39 |
dev-python/freezegun[\${PYTHON_USEDEP}] |
40 | 40 |
dev-python/pytest[\${PYTHON_USEDEP}] |
41 |
dev-python/pytest-rerunfailures[\${PYTHON_USEDEP}] |
|
42 |
dev-python/pytest-xdist[\${PYTHON_USEDEP}] |
|
41 | 43 |
>=dev-python/tornado-4.2.1[\${PYTHON_USEDEP}] |
42 | 44 |
>=dev-python/trustme-0.5.3[\${PYTHON_USEDEP}] |
43 | 45 |
>=dev-python/zstandard-0.18.0[\${PYTHON_USEDEP}] |
... | ... | |
79 | 81 | |
80 | 82 |
# plugins make tests slower, and more fragile |
81 | 83 |
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 |
82 |
epytest |
|
84 |
# some tests are very fragile to timing |
|
85 |
epytest -p rerunfailures --reruns=10 --reruns-delay=2 \ |
|
86 |
-p xdist -n "$(makeopts_jobs)" --dist=worksteal |
|
83 | 87 |
} |