mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 16:13:21 -04:00
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
68 lines
1.7 KiB
Bash
68 lines
1.7 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
PYTHON_COMPAT=( python3_7 )
|
|
|
|
DISTUTILS_USE_SETUPTOOLS=rdepend
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="This is a pytest plugin to help you test projects that use 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 ~x86"
|
|
|
|
# lots of different errors
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
>=dev-python/async_generator-1.9[${PYTHON_USEDEP}]
|
|
dev-python/outcome[${PYTHON_USEDEP}]
|
|
>=dev-python/trio-0.11[${PYTHON_USEDEP}]
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
test? (
|
|
>=dev-python/hypothesis-3.64[${PYTHON_USEDEP}]
|
|
dev-python/pytest-trio[${PYTHON_USEDEP}]
|
|
!~dev-python/pytest-3.7.0[${PYTHON_USEDEP}]
|
|
!~dev-python/pytest-3.7.1[${PYTHON_USEDEP}]
|
|
>=dev-python/pytest-4.3[${PYTHON_USEDEP}]
|
|
dev-python/trio-asyncio[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
distutils_enable_sphinx docs/source \
|
|
">=dev-python/attrs-17.4.0" \
|
|
">=dev-python/sphinx-1.6.1" \
|
|
dev-python/sphinx_rtd_theme \
|
|
dev-python/sphinxcontrib-trio
|
|
|
|
python_prepare_all() {
|
|
#fix for https://github.com/python-trio/pytest-trio/issues/90
|
|
# AttributeError("module 'pytest' has no attribute 'RemovedInPytest4Warning'",)
|
|
rm pytest_trio/_tests/conftest.py || die
|
|
|
|
distutils-r1_python_prepare_all
|
|
}
|
|
|
|
python_test() {
|
|
# has to be run in source dir
|
|
#even upstream doesn't know how to run their tests
|
|
#https://github.com/python-trio/pytest-trio/issues/84
|
|
#"Our CI is still passing AFAIK"
|
|
|
|
PYTHONPATH="${S}"
|
|
cd "${S}" || die
|
|
pytest -vv || die "Tests fail with ${EPYTHON}"
|
|
}
|