add pytest-test-groups-1.0.3

This commit is contained in:
Andreas Billmeier 2020-08-30 14:13:39 +02:00 committed by Andreas Billmeier
parent 469d1d263f
commit 739e34dc5e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 49 additions and 0 deletions

View File

@ -39,6 +39,7 @@
* update codecov-2.1.0.ebuild
* update pylint-strict-informational-0.1
* update pytest-cov-2.10.0
* add pytest-test-groups-1.0.3
2020-08-26
* fix https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/18#issuecomment-124

View File

@ -0,0 +1,3 @@
DIST pytest-test-groups-1.0.3.tar.gz 2455 BLAKE2B f58d69c6c66a9f1fbbcd61d58c2371fb17aaadc09f24d801e06849802e2631ca666200316247e89ea73c1df2b403b4c2ff7c7fcecf0e260e9d5e41bb39a35852 SHA512 ee82a535fbe10ce7f32f9b72c852f1017e703346585bac184c764393266957720d6d7140cce8192328a7d70e666a482b2acc0068b53b428b394712b5d451e8db
EBUILD pytest-test-groups-1.0.3.ebuild 798 BLAKE2B 1f3f36d70eb28c32eb2bcb0558881b88180962af606f7b6e7a97400b977b319c8f6baacb0371c9360885871f048d1ecf30fa871e936ad98eefb0a33e929009b7 SHA512 36341b387b0086f3b254c7aa7f869b8780181e1d057a65a6b7a53051314033a6c9c8da5636c65c306b4ad49c1be3cfa5473ef0ef8f515043ba3dae8df1ec8087
MISC metadata.xml 458 BLAKE2B f44519dcf21984385d5161e192166d80c89a16717abf25e1a5e1126bb5c379147eeef5f49039cc49ba64aaa0d1567047791945448fb7a5624a1d446703835bca SHA512 63aa09381c015b4c7bb8528e491c9408cdce9770ddca6aab2263f6a5ced7afd6d072f10bcbef532eb6ae62205ca1b57d6f9a0f6444722ffc263656c6ec7f2320

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-test-groups</remote-id>
<maintainer status="unknown">
<email>mark@markadams.me</email>
<name>Mark Adams</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{7..8} )
inherit distutils-r1
DESCRIPTION="A Pytest plugin for running a subset of your tests by splitting them in to equally sized groups."
HOMEPAGE="https://github.com/mark-adams/pytest-test-groups https://pypi.org/project/pytest-test-groups/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/pytest-2.5[${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
}