add pytest-runner-5.2

This commit is contained in:
Andreas Billmeier (@STR/VW3) 2021-08-23 17:08:49 +02:00 committed by Andreas Billmeier
parent cfd0b6744a
commit f99c87975b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pytest-runner-5.2.tar.gz 15534 BLAKE2B 0bcbd5991808aaa4b85b9071ce142e03287683e919687fa76f5b7929ad07dca6ae6edaf7ad30a1bc1ba0163f43505ec18ab2cd5e0462399b8252c8ca761d7b29 SHA512 5fc62a4e681cfa0ef25dc815ccbbfe1a7ca0e9e7783c2ba2db0da7d2539f11c08d6c3fad2ab3dfe7f0d50fe7bfb41127b11ec9af67ef8e32361655bc910c8245
EBUILD pytest-runner-5.2.ebuild 774 BLAKE2B 185da7eb3e105f6bcd7382b748d816f468b813c08ed3d041184891cc190f165849de2518a062eea967be79e62304862e487f3b11757c4f448ef651fe421222d9 SHA512 e427a2ebd2cf8c896e76b3912575287b5cf52eb3f50d971802b1e49a84dbf4f049ef431973ada46b105ddccef0c417f07c51420612ebcb8f444f75c22e5ddc13
MISC metadata.xml 458 BLAKE2B 38cdb0afb978c0cfc0956f88a39d558e6d5c3dc1d1e43fe8f74cb6daf3f2def0407141b943f21b5482e232798396496c7d7e831cd002037d2e3666433e613c30 SHA512 fbf496e23428822498e4d8586f0d1efe9876f916095197e6de3ab8001304a81f697e575bf78df13923bda351b9c8d7107e9c1775b43eca2fb73af2020b91e533

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pytest-runner</remote-id>
<maintainer status="unknown">
<email>jaraco@jaraco.com</email>
<name>Jason R. Coombs</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Invoke py.test as distutils command with dependency resolution"
HOMEPAGE="https://github.com/pytest-dev/pytest-runner/ https://pypi.org/project/pytest-runner/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
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
}