diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-03-25 18:04:30 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-04-01 11:36:32 +0200 |
commit | 1423ac82bf7a4ae558a0eb637b46a183235d912e (patch) | |
tree | e564b7176226de91caa4a33ca8b78dc143579658 /eclass | |
parent | dev-python/jsonref: Use pdm-backend (diff) | |
download | gentoo-1423ac82bf7a4ae558a0eb637b46a183235d912e.tar.gz gentoo-1423ac82bf7a4ae558a0eb637b46a183235d912e.tar.bz2 gentoo-1423ac82bf7a4ae558a0eb637b46a183235d912e.zip |
distutils-r1.eclass: Remove nosetests support
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 16d97501012b..44553f8da6f3 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -572,8 +572,6 @@ distutils_enable_sphinx() { # with the specified test runner. Also copies the current value # of RDEPEND to test?-BDEPEND. The test-runner argument must be one of: # -# - nose: nosetests (dev-python/nose) -# # - pytest: dev-python/pytest # # - setup.py: setup.py test (no deps included) @@ -610,9 +608,6 @@ distutils_enable_tests() { local test_deps=${RDEPEND} local test_pkgs case ${1} in - nose) - test_pkgs='>=dev-python/nose-1.3.7_p20221026[${PYTHON_USEDEP}]' - ;; pytest) test_pkgs='>=dev-python/pytest-7.4.4[${PYTHON_USEDEP}]' if [[ -n ${EPYTEST_TIMEOUT} ]]; then @@ -1594,9 +1589,6 @@ distutils-r1_python_test() { fi case ${_DISTUTILS_TEST_RUNNER} in - nose) - "${EPYTHON}" -m nose -v "${@}" - ;; pytest) epytest ;; |