add pytest-tornasync-0.6.0

This commit is contained in:
Andreas Billmeier 2020-09-06 18:03:20 +02:00 committed by Andreas Billmeier
parent 80d7c04ab9
commit 22490fbaa7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 53 additions and 0 deletions

View File

@ -57,6 +57,7 @@
* unpin bs4 in motorparts-1.1.0
* fix lupupy-0.0.1* pathlib DEPS
* fix pyalmond test DEPS
* add pytest-tornasync-0.6.0
2020-09-05
* repair iglo-1.2.7, drop iglo-1.2.5, abondoned anyway: https://github.com/jesserockz/python-iglo/issues/1#issuecomment-558479023

View File

@ -0,0 +1,3 @@
DIST pytest-tornasync-0.6.0.tar.gz 6201 BLAKE2B 6b6a2f941e649fb33373ef39b9d848d68a8af0f5e0d1a5e4496a9160e8e63ea108832437e87382c8203bb2c75673fad37b4ebd76157913199eb1661cd0216591 SHA512 2e258913b17a5442d18928833ee7e9771b6dbd148dbf251a7661432a54d4b9f9f3a7c396134eb544c0e3ce0af48c99d2d632399ac6ebdcf148187a7a523f4974
EBUILD pytest-tornasync-0.6.0.ebuild 865 BLAKE2B a85761cd14c1e63a19f58bd5f6795161664fb0753b92661385d2631654b7161526bde95edf7740d681de86ea2342d1d73daf8a83e0290268d655fa77174d6b86 SHA512 9a356133d831e1f5d649288c6db7015b49f20e25e0d8e3c3c7d0b60ed5fa17169a2aafe0107626e3f38a4b48736e6c4e9543bc9c71f844f1f5238732fb86674d
MISC metadata.xml 479 BLAKE2B e76dc458419365d6f17f6e60a19fbe7a636d68e3b55bfe9ea60ea77bf4d1521800f85e892d02c97d6ad27f74d8b69009e214dba4deee2d084937efd637462dbe SHA512 862ac5026cb36e50673c133625a4a823948e3fa2e1f22836475580d8e2410607949e62057ac3cb721e885481935b8ed290e3292b9e57bfceb987a7db96d8aa4c

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-tornasync</remote-id>
<maintainer status="unknown">
<email>sapientdust+pytest-tornasync@gmail.com</email>
<name>Calvin Smith</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="py.test plugin for testing Python 3.5+ Tornado code"
HOMEPAGE="https://github.com/eukaryote/pytest-tornasync https://pypi.org/project/pytest-tornasync/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.post2.tar.gz -> ${P}.tar.gz"
S=${WORKDIR}/${PN}-${PV}.post2
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=">=dev-python/pytest-3.0[${PYTHON_USEDEP}]
>=www-servers/tornado-5.0[${PYTHON_USEDEP}]"
BDEPEND="${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
}