add pytest-trio-0.6.0

This commit is contained in:
Andreas Billmeier 2020-09-06 14:21:43 +02:00 committed by Andreas Billmeier
parent 38e51a29dd
commit 97e48d00c5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -31,6 +31,7 @@
* bump / rework pychromecast-7.3.0
* add trio-0.16.0
* add outcome-1.0.1
* add pytest-trio-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-trio-0.6.0.tar.gz 37835 BLAKE2B 4158cfc81fc6db3aa9f049127f6550de4ac55fd881c4e35b67bdcfe0492470dce6ee5df9077962b46b6233f942fcc944b41cd185897ddb83824ad1a31abb846e SHA512 662719e67f5d71f73b2e5389592812b79b296b7fdd8ff6f491961bd5444958e829c46a3bd79f08e9b8b8638125c48edd459f599acc2e071fc0cf8013525a3739
EBUILD pytest-trio-0.6.0.ebuild 821 BLAKE2B 88b38ea8fd195e2a4df7b4c3af439bad7b40fcbf8da5493bc736da99553d9871513061b5e9b1449f383d9e60eddf2a8cd52715172f4db78c0b0f1aa5e764b2ee SHA512 a1ab604ec3a912c47bcf50af40bd03dbe07d7fb80e5244cfa88a91f62526643da237c05bd98710d6d03170d3703228b88629abaea3f14f16e2bbbea3f1c48548
MISC metadata.xml 466 BLAKE2B eff4842916900679de0e51af99a4941268178084675936cd328bafd60b727732033501d7306c38a1de524f8af27aaf575a3f7fd73520afe4ce738e76b95cccdb SHA512 71806eab052bae00a73301ad7a17d06a7fe2ef382d1fa5f0939d3d2a276c8472f47ae8a62fa39e40c7bbd07b726adc467a71410ed311a68d2ef56002566ec8ce

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-trio</remote-id>
<maintainer status="unknown">
<email>emmanuel.leblond@gmail.com</email>
<name>Emmanuel Leblond</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# 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="Pytest plugin for trio"
HOMEPAGE="https://github.com/python-trio/pytest-trio https://pypi.org/project/pytest-trio/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="|| ( MIT Apache-2.0 )"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/trio-0.15.0[${PYTHON_USEDEP}]
>=dev-python/async_generator-1.9[${PYTHON_USEDEP}]
dev-python/outcome[${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
}