dev-python/nox: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-10-10 13:12:06 +02:00
parent 8ec80905c6
commit be871dc9bf
2 changed files with 0 additions and 70 deletions

View File

@@ -1,2 +1 @@
DIST nox-2024.10.09.gh.tar.gz 4003528 BLAKE2B 51bf42870eac462fdb87e897c225c8262703ccc222d5c463e45d91acf08e4211153f60f72450e3fb964d4ca386501bfa88559e8cff38d55aa2f22310a17d7911 SHA512 51d1f70ba94d01abd10ba3a12896facd13a7a2881496221b6fa9d0a43ff947303b0cc975a29169a3d9e0174277e23e0bc4b1137b2774c1abffa23a48c9d69a11
DIST nox-2025.05.01.gh.tar.gz 4023268 BLAKE2B b5cfdb095595108613b2bce716ca3fb84978278de23da21f01a5169931187837056bc1381d510f343593097ff4c779f834c06d1bcef61394e72c87db26a92022 SHA512 1b1efac7dd78029d6c61122cdafde8077bfe2635a1d3441e848847e5c81da6cd9f2db102796b855520e9d239ee5b9b782e50b40e904c9bafafcc2f44cf61e871

View File

@@ -1,69 +0,0 @@
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( pypy3 python3_{10..13} )
inherit distutils-r1
DESCRIPTION="Flexible test automation for Python"
HOMEPAGE="
https://github.com/wntrblm/nox/
https://pypi.org/project/nox/
"
SRC_URI="
https://github.com/wntrblm/nox/archive/${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
RDEPEND="
>=dev-python/argcomplete-1.9.4[${PYTHON_USEDEP}]
>=dev-python/colorlog-2.6.1[${PYTHON_USEDEP}]
>=dev-python/packaging-20.9[${PYTHON_USEDEP}]
>=dev-python/virtualenv-20.14.1[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
>=dev-python/tomli-1[${PYTHON_USEDEP}]
' 3.10)
"
BDEPEND="
test? (
dev-python/py[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
src_prepare() {
# remove upper bounds from dependencies
sed -i -e 's:<[0-9.]*,::' pyproject.toml || die
distutils-r1_src_prepare
}
python_test() {
local EPYTEST_DESELECT=(
# TODO: conda?
'tests/test_sessions.py::TestSessionRunner::test__create_venv_options[nox.virtualenv.CondaEnv.create-conda-CondaEnv]'
# Internet
tests/test_virtualenv.py::test_uv_install
)
case ${EPYTHON} in
pypy3)
EPYTEST_DESELECT+=(
# hardcoded CPython assumption
tests/test_tox_to_nox.py::test_skipinstall
tests/test_tox_to_nox.py::test_trivial
tests/test_tox_to_nox.py::test_usedevelop
)
;;
esac
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest -o tmp_path_retention_policy=all
}