|
| 1 | +# Copyright 1999-2024 Gentoo Authors |
| 2 | +# Distributed under the terms of the GNU General Public License v2 |
| 3 | + |
| 4 | +EAPI=8 |
| 5 | + |
| 6 | +DISTUTILS_USE_PEP517=setuptools |
| 7 | +PYTHON_TESTED=( python3_{10..12} pypy3 ) |
| 8 | +PYTHON_COMPAT=( python3_{11..13} ) |
| 9 | + |
| 10 | +inherit distutils-r1 pypi |
| 11 | + |
| 12 | +DESCRIPTION="Simple powerful testing with Python" |
| 13 | +HOMEPAGE=" |
| 14 | + https://pytest.org/ |
| 15 | + https://github.com/pytest-dev/pytest/ |
| 16 | + https://pypi.org/project/pytest/ |
| 17 | +" |
| 18 | + |
| 19 | +LICENSE="MIT" |
| 20 | +SLOT="0" |
| 21 | +KEYWORDS="amd64 arm arm64 x86" |
| 22 | +IUSE="test" |
| 23 | +RESTRICT="!test? ( test )" |
| 24 | + |
| 25 | +RDEPEND=" |
| 26 | + dev-python/iniconfig[${PYTHON_USEDEP}] |
| 27 | + dev-python/packaging[${PYTHON_USEDEP}] |
| 28 | + <dev-python/pluggy-2[${PYTHON_USEDEP}] |
| 29 | + >=dev-python/pluggy-1.4[${PYTHON_USEDEP}] |
| 30 | + $(python_gen_cond_dep ' |
| 31 | + >=dev-python/exceptiongroup-1.0.0_rc8[${PYTHON_USEDEP}] |
| 32 | + >=dev-python/tomli-1[${PYTHON_USEDEP}] |
| 33 | + ' 3.10) |
| 34 | + !!<=dev-python/flaky-3.7.0-r5 |
| 35 | +" |
| 36 | +BDEPEND=" |
| 37 | + >=dev-python/setuptools-scm-6.2.3[${PYTHON_USEDEP}] |
| 38 | + test? ( |
| 39 | + ${RDEPEND} |
| 40 | + $(python_gen_cond_dep ' |
| 41 | + dev-python/argcomplete[${PYTHON_USEDEP}] |
| 42 | + >=dev-python/attrs-19.2[${PYTHON_USEDEP}] |
| 43 | + >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}] |
| 44 | + dev-python/mock[${PYTHON_USEDEP}] |
| 45 | + >=dev-python/pygments-2.7.2[${PYTHON_USEDEP}] |
| 46 | + dev-python/pytest-xdist[${PYTHON_USEDEP}] |
| 47 | + dev-python/requests[${PYTHON_USEDEP}] |
| 48 | + dev-python/xmlschema[${PYTHON_USEDEP}] |
| 49 | + ' "${PYTHON_TESTED[@]}") |
| 50 | + ) |
| 51 | +" |
| 52 | + |
| 53 | +src_test() { |
| 54 | + # workaround new readline defaults |
| 55 | + echo "set enable-bracketed-paste off" > "${T}"/inputrc || die |
| 56 | + local -x INPUTRC="${T}"/inputrc |
| 57 | + distutils-r1_src_test |
| 58 | +} |
| 59 | + |
| 60 | +python_test() { |
| 61 | + if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then |
| 62 | + einfo "Skipping tests on ${EPYTHON}" |
| 63 | + return |
| 64 | + fi |
| 65 | + |
| 66 | + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 |
| 67 | + local -x COLUMNS=80 |
| 68 | + |
| 69 | + local EPYTEST_DESELECT=( |
| 70 | + # broken by epytest args |
| 71 | + testing/test_warnings.py::test_works_with_filterwarnings |
| 72 | + |
| 73 | + # tend to be broken by random pytest plugins |
| 74 | + # (these tests patch PYTEST_DISABLE_PLUGIN_AUTOLOAD out) |
| 75 | + testing/test_helpconfig.py::test_version_less_verbose |
| 76 | + testing/test_helpconfig.py::test_version_verbose |
| 77 | + testing/test_junitxml.py::test_random_report_log_xdist |
| 78 | + testing/test_junitxml.py::test_runs_twice_xdist |
| 79 | + testing/test_terminal.py::TestProgressOutputStyle::test_xdist_normal |
| 80 | + testing/test_terminal.py::TestProgressOutputStyle::test_xdist_normal_count |
| 81 | + testing/test_terminal.py::TestProgressOutputStyle::test_xdist_verbose |
| 82 | + testing/test_terminal.py::TestProgressWithTeardown::test_xdist_normal |
| 83 | + testing/test_terminal.py::TestTerminalFunctional::test_header_trailer_info |
| 84 | + testing/test_terminal.py::TestTerminalFunctional::test_no_header_trailer_info |
| 85 | + |
| 86 | + # unstable with xdist |
| 87 | + testing/test_terminal.py::TestTerminalFunctional::test_verbose_reporting_xdist |
| 88 | + |
| 89 | + # TODO (XPASS) |
| 90 | + testing/test_debugging.py::TestDebuggingBreakpoints::test_pdb_not_altered |
| 91 | + testing/test_debugging.py::TestPDB::test_pdb_interaction_capturing_simple |
| 92 | + testing/test_debugging.py::TestPDB::test_pdb_interaction_capturing_twice |
| 93 | + testing/test_debugging.py::TestPDB::test_pdb_with_injected_do_debug |
| 94 | + testing/test_debugging.py::test_pdb_suspends_fixture_capturing |
| 95 | + |
| 96 | + # setuptools warnings |
| 97 | + testing/acceptance_test.py::TestInvocationVariants::test_cmdline_python_namespace_package |
| 98 | + |
| 99 | + # times out |
| 100 | + testing/test_debugging.py::TestPDB::test_pdb_interaction_exception |
| 101 | + testing/test_debugging.py::TestPDB::test_pdb_with_caplog_on_pdb_invocation |
| 102 | + ) |
| 103 | + |
| 104 | + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( |
| 105 | + # regressions on pypy3.9 |
| 106 | + # https://github.com/pytest-dev/pytest/issues/9787 |
| 107 | + testing/test_skipping.py::test_errors_in_xfail_skip_expressions |
| 108 | + testing/test_unraisableexception.py |
| 109 | + ) |
| 110 | + |
| 111 | + local EPYTEST_XDIST=1 |
| 112 | + epytest |
| 113 | +} |
0 commit comments