mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-11 00:07:51 +03:00
44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="pytest plugin to run your tests in a specific order"
|
|
HOMEPAGE="
|
|
https://github.com/pytest-dev/pytest-order/
|
|
https://pypi.org/project/pytest-order/
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
|
|
RDEPEND="
|
|
>=dev-python/pytest-6.4.2[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/pytest-mock[${PYTHON_USEDEP}]
|
|
dev-python/pytest-xdist[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
EPYTEST_PLUGINS=( "${PN}" pytest-{mock,xdist} )
|
|
EPYTEST_PLUGIN_LOAD_VIA_ENV=1
|
|
distutils_enable_tests pytest
|
|
distutils_enable_sphinx docs/source
|
|
|
|
EPYTEST_DESELECT=(
|
|
# these require pytest-dependency
|
|
tests/test_dependency.py::test_order_dependencies_no_auto_mark
|
|
tests/test_dependency.py::test_order_dependencies_auto_mark
|
|
tests/test_order_group_scope_dep.py::test_class_group_scope_module_scope
|
|
tests/test_order_group_scope_named_dep.py::test_class_group_scope_module_scope
|
|
)
|