commit: 3f089986479ca0aac15870bef4c4b1ad9bb7907f
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Jun 14 22:49:47 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Jun 14 23:09:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3f089986
dev-python/pytest-randomly: drop 3.5.0
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-python/pytest-randomly/Manifest | 1 -
.../pytest-randomly/pytest-randomly-3.5.0.ebuild | 50 ----------------------
2 files changed, 51 deletions(-)
diff --git a/dev-python/pytest-randomly/Manifest
b/dev-python/pytest-randomly/Manifest
index fcc746d43..7ec2d1286 100644
--- a/dev-python/pytest-randomly/Manifest
+++ b/dev-python/pytest-randomly/Manifest
@@ -1,2 +1 @@
-DIST pytest-randomly-3.5.0.tar.gz 36605 BLAKE2B
1e993f7b0cec9fede1fd22c9be06ca34b884ea67183e13197e59359ebb5b8a6bc86715b117f379d72c11eec85fe31c3f4cb1dd7c2bae1412dabd630ddff81bbf
SHA512
ed5cc11799e38caaa899ab25f75469baa2c57a5113c3e51129c4cee801b0eded57f6165113f8cb5a8c995057569c224b9039d601b361b9e95553dc8cb338b368
DIST pytest-randomly-3.8.0.tar.gz 26376 BLAKE2B
b51fb09e887fb20783edaecc6494d22c9e66c4c87aabe5368f85b492681c29c9283ddc70821801442d4908a76ba64e70ee04433f5bd3639bae0cf198c950dcb1
SHA512
eabed09478f3047f181b4efe1057d15dda5686f85d3321083fbd443e5dd036f9fc9bfca2048ff898a194d59349e46ebf6258f03caccf649e891bb0bc6d6ef863
diff --git a/dev-python/pytest-randomly/pytest-randomly-3.5.0.ebuild
b/dev-python/pytest-randomly/pytest-randomly-3.5.0.ebuild
deleted file mode 100644
index 3608c8848..000000000
--- a/dev-python/pytest-randomly/pytest-randomly-3.5.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{7,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/importlib_metadata[${PYTHON_USEDEP}]'
python3_7)
- $(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 \
- --deselect
tests/test_pytest_randomly.py::test_classes_reordered \
- --deselect
tests/test_pytest_randomly.py::test_doctests_reordered \
- --deselect
tests/test_pytest_randomly.py::test_class_test_methods_reordered \
- --deselect tests/test_pytest_randomly.py::test_files_reordered \
- --deselect
tests/test_pytest_randomly.py::test_test_functions_reordered \
- --deselect
tests/test_pytest_randomly.py::test_test_functions_reordered_when_randomness_in_module
\
- --deselect
tests/test_pytest_randomly.py::test_files_reordered_when_seed_not_reset \
- --deselect
tests/test_pytest_randomly.py::test_doctests_in_txt_files_reordered \
- || die "Testsuite failed under ${EPYTHON}"
-}