upgrade pytest to 5.0.1 with dependencies

This commit is contained in:
2019-07-09 15:27:00 +02:00
parent 0d6a884bf9
commit 041ff498d0
14 changed files with 258 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
DIST asynctest-0.13.0.tar.gz 42301 BLAKE2B c175b759188a5aaeb782ae56f11a24f8f15aca9c703e2bf1964a8d8ab885de0759208fd483e555c309ced196c8d8bd23a5777e589cb8bd218cb4d38a05303526 SHA512 f98a9a330c3e4024373d74ea1899ec74f8242be58856d9a4c0910d397cbf15c1bd2deb2531cf78fd7bfe7d2aa4abad8b404bbb9eaee4b721c9e317ec5ec4a955
EBUILD asynctest-0.13.0.ebuild 762 BLAKE2B 206e792c604e334bc7f97f9ce8026620491c6a97418a653d34bbf8fedd65113493bb98dafc2ef672d8c93e3f671a99a388d3a625bf7d436983791f1f78443fa5 SHA512 122baf8aa96a1249f5f2f1b402f39cc475464b61fb80bbc9f3fba2989c19dee7f8c6f686447749a8cf5547baa8e6c9c1e0defeb8778250e09e48887eaf9c4da7
MISC metadata.xml 465 BLAKE2B f3eb301e8b3e125785ed5c6a742212278862babb410dd0161fa820d1190f3695ca8bd5202bde169e4e3417a4b48f2afdc8c87980bc378d45cfdd92f6e6798753 SHA512 5dc1d510050d2f8cc99eba95bb9a3eca2cc1262fcfc1c4d3a13cd501b935623d99cf4a9d7474a1eb1489fe1f9ed5c53a74fc41f9a11487bb54352e26d530503c

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Enhance the standard unittest package with features for testing asyncio libraries"
HOMEPAGE="https://github.com/Martiusweb/asynctest/ https://pypi.org/project/asynctest/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache 2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
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
}

View File

@@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">asynctest</remote-id>
<maintainer status="unknown">
<email>martius@martiusweb.net</email>
<name>Martin Richard</name>
</maintainer>
</upstream>
</pkgmetadata>