diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-05-22 07:31:18 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-05-22 07:31:18 +0100 |
commit | 908778078736bd36f7a60a2d576d415cb8e000fa (patch) | |
tree | c6a4796c48b608c14dc7e9674cdbd38f905e3c15 /dev-python/pytest-timeout | |
parent | 185fa19bbf68a4d4dca534d2b46729207a177f16 (diff) |
gentoo resync : 22.05.2021
Diffstat (limited to 'dev-python/pytest-timeout')
-rw-r--r-- | dev-python/pytest-timeout/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pytest-timeout/pytest-timeout-1.4.2-r1.ebuild | 14 |
2 files changed, 5 insertions, 11 deletions
diff --git a/dev-python/pytest-timeout/Manifest b/dev-python/pytest-timeout/Manifest index 6ea7208440ae..12c4f0bf691e 100644 --- a/dev-python/pytest-timeout/Manifest +++ b/dev-python/pytest-timeout/Manifest @@ -1,4 +1,4 @@ AUX pytest-timeout-1.4.2-optional-cov.patch 839 BLAKE2B adc39941d090788666a5fa74d602fc7c2d7252622d5d213f8308728df7f198faf82edd9d56b3bb3cc277e62608cc6f59909ddce881e1a5931dde1f21f3671d32 SHA512 adb234da8272cf1b61d80db6d9c2b99cb0297044a962f3f54c7d9991ec8a142e6df3eb95fb29ee56326b3bd89e8af6d754f3c92f21a9fce934cd5d0af7fe4d05 DIST pytest-timeout-1.4.2.tar.gz 15424 BLAKE2B b7ab91833e59af56ae50c066c14bb9b8ae9995d1586f35b29f107665d7da124828d7accc1b0149702f2973c61f18024739c68de736ae8aae6f55e8a10bf5d4ff SHA512 3446ecdb5aaad5fbca12df4e7f4f40c6c1a12895d3ed9f3a3ee24800ce36deed3cb8c09a4cc72220c962b06f821cfd55bf7eebbca23664c56abf2d0e5bc8fbea -EBUILD pytest-timeout-1.4.2-r1.ebuild 910 BLAKE2B 28664c2a585c1ff2bd8d78e56b338f4b4b2a8e6196948f0cacf2f409492e8dcac8bc3997f939f302db3f65b2481164b4720d12320d9b79aa16d2f325104eeb0f SHA512 70dd5c6e85f895f200642119def18c6e3e266b164f8fe547afc821ae55555574d6c9488b9763b4f5415ebb2a9a7a1deb74d4375b9f23e14e3d4d4a4706bee23d +EBUILD pytest-timeout-1.4.2-r1.ebuild 833 BLAKE2B 82bacda2efa91936f0a3fba5e25411956fbe559c7b1e3a8c145f58f53126a3d27d07939d86e791b33e3df487cbf737603e11222239d7a608b4056b70e31177fa SHA512 b4360d501bf1dad80a10199e6f4e401ff9921a38b60332c50fb6cd3029bf23f74ad41323b599bf44a369e456cb0b57e771f6ac54bd6e65abbd1e7d5019fe3d38 MISC metadata.xml 352 BLAKE2B c3aa8ea91e07badacd5ac6d00f8580b4a2616b3909ce79f56e9760af95597289379072b6e4cfd65e9da4306ec0f1b0c4a77a920ef8cc10821b83ee5013c0e5f4 SHA512 3459606d8b5c8b639ce59bc18c85581076f10384d42cb00288a88159fdeb7c30cf51efec99e1696c69b69793da42ea25bab3674343629b1bd979f8836bc488dd diff --git a/dev-python/pytest-timeout/pytest-timeout-1.4.2-r1.ebuild b/dev-python/pytest-timeout/pytest-timeout-1.4.2-r1.ebuild index 6502bfc16013..ab58b250128b 100644 --- a/dev-python/pytest-timeout/pytest-timeout-1.4.2-r1.ebuild +++ b/dev-python/pytest-timeout/pytest-timeout-1.4.2-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) +PYTHON_COMPAT=( python3_{7..10} pypy3 ) inherit distutils-r1 @@ -22,17 +22,11 @@ BDEPEND=" dev-python/pexpect[${PYTHON_USEDEP}] !hppa? ( $(python_gen_cond_dep ' dev-python/pytest-cov[${PYTHON_USEDEP}] - ' -3) ) + ' python3_{7..9}) ) )" -distutils_enable_tests pytest +distutils_enable_tests --install pytest PATCHES=( "${FILESDIR}"/pytest-timeout-1.4.2-optional-cov.patch ) - -python_test() { - distutils_install_for_testing - - pytest -vv || die "Tests fail with ${EPYTHON}" -} |