mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-10 21:00:27 -04:00
Closes: https://bugs.gentoo.org/796203 Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
44 lines
1.0 KiB
Bash
44 lines
1.0 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
PYTHON_COMPAT=( python3_{8,9} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Pytest plugin to randomly order tests and control random.seed"
|
|
HOMEPAGE="
|
|
https://pypi.python.org/pypi/pytest-randomly
|
|
https://github.com/pytest-dev/pytest-randomly
|
|
"
|
|
SRC_URI="https://github.com/pytest-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
dev-python/docutils[${PYTHON_USEDEP}]
|
|
dev-python/factory_boy[${PYTHON_USEDEP}]
|
|
dev-python/Faker[${PYTHON_USEDEP}]
|
|
dev-python/numpy[${PYTHON_USEDEP}]
|
|
dev-python/pytest[${PYTHON_USEDEP}]
|
|
|
|
$(python_gen_cond_dep 'dev-python/pygments[${PYTHON_USEDEP}]' python3_9)
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/pytest-xdist[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
python_test() {
|
|
distutils_install_for_testing --via-root
|
|
pytest -vv \
|
|
--deselect tests/test_pytest_randomly.py::test_entrypoint_injection \
|
|
|| die "Testsuite failed under ${EPYTHON}"
|
|
}
|