dev-python/RachioPy: remove olds, cleanup, enable pytest

This commit is contained in:
2022-10-17 22:34:52 +02:00
committed by Andreas Billmeier
parent 08efacbb3f
commit e21348ba7d
2 changed files with 7 additions and 7 deletions

View File

@@ -1,3 +1,3 @@
DIST RachioPy-1.0.3.tar.gz 5733 BLAKE2B 522d6e3b6bc3d952802a0dd9d319c0f3abcde987ce1fabb15eaba53d20bb683cc072d88715708911636273b9e3ba22a334c1e2c56ad918e2616c3cceee49508f SHA512 b9feafec9ca8feb6b049b5d53df9843f42bc35aeea191fe750b783f79935d90a6f2d6a058df55a7cb40cb21c0fe1d248174542d8b51ed9dbd682c33c1a248558
EBUILD RachioPy-1.0.3.ebuild 752 BLAKE2B b87c721f7fe2d1a05024c0d42b0c31313cbaf84f872ff45046452293db072a27e535931589a62dd216831ea4256d7407a9abc73cbe3a2888883728294dace4ca SHA512 3fb74be64659ee883b83f8fd39dacd74f8299e7ef4fd434d80b1aa32e4732cc747c74bd1a02eb0687e87ba26da11d0537e4fd3f9b2f8fbd9537f10bf8391cfa5
EBUILD RachioPy-1.0.3.ebuild 693 BLAKE2B 1f78071b973f8ffe26bc52fc41c80d50721757b51e08ff273ddb6f25460d2e6eae22c9b24d32fb3f211c1b2315184f1539b3c997296c739ed1a639725e633c92 SHA512 70372130004966b82ae213eb23b07168e2e3c08f16586b03d6591ab65c6c968c0ce92e1f41208c6486bb966db115e8b572a648f5dee79d5e06e1bc17268a8264
MISC metadata.xml 462 BLAKE2B d049c54989aa2f4ae29ae7fbd5faff2ad844b2dd9a684a885959c9d73d8c43e545b6a89e4c2af319b9370144b457c3889d9fc9b10ddd591b1cd5a4d34afbdada SHA512 c8a2cd9c3b1c0c48e7c8e5f458bd433899507da4c21f9e44a77e98aadfc718f7df9e793cd81b51fba6dbe3c4724a1b08534a66f1830a0dcfaf8b3e5d9443cb43

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
@@ -23,11 +23,11 @@ RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest