dev-python/pytest-harvest: drop 1.10.4

Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2025-04-15 22:19:36 +09:00
parent 278c339b08
commit 49f5deb469
3 changed files with 0 additions and 80 deletions

View File

@@ -1,2 +1 @@
DIST pytest-harvest-1.10.4.tar.gz 77384 BLAKE2B 93acd363b9874ef0a8e776c3472cde27417776850d004e83f00ecd52c7c9acbf1758d0062bd14fb83889c9b688a1f92352e42afe2dd6a9b01c567e8afe9d2f1c SHA512 61e371478b0fe809cb5e39040596a241ef3630641d7465799a5e24a953453924f3f6b5b8b94e67a51f1f5b2cb744bb2a698a7d50b6d638dc866a856bf74abe7a
DIST pytest-harvest-1.10.5.tar.gz 81064 BLAKE2B 3c45a2e0779fed3c8a8e6e8e340b1e5752ffc257d39c5d64a976da680340a954d92206cd0fa33bcd03c2453600ed96924c5d733c7005dc333e927cf82c2ba862 SHA512 292b6daa75cc0e54b0c74feb75fc5b7f1745390865c8868439ac8a89c74fc1589a9794749f501f6af76ad46a3aa8d2e72076b827e6eddbd75ae5fb908fc35cf0

View File

@@ -1,20 +0,0 @@
https://www.mkdocs.org/about/release-notes/#stricter-directory-validation
diff --git a/docs/mkdocs.yml b/mkdocs.yml
similarity index 95%
rename from docs/mkdocs.yml
rename to mkdocs.yml
index 7819dac..4a6d73e 100644
--- a/docs/mkdocs.yml
+++ b/mkdocs.yml
@@ -1,8 +1,8 @@
site_name: pytest_harvest
# site_description: 'A short description of my project'
repo_url: https://github.com/smarie/python-pytest-harvest
-docs_dir: .
-site_dir: ../site
+docs_dir: ./docs
+site_dir: ./site
nav:
- Home: index.md
- API reference: api_reference.md

View File

@@ -1,59 +0,0 @@
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
DOCS_BUILDER="mkdocs"
DOCS_DEPEND="dev-python/mkdocs-material"
inherit distutils-r1 docs pypi
DESCRIPTION="Store and retrieve data created during your pytest tests execution"
HOMEPAGE="https://pypi.org/project/pytest-harvest/ https://github.com/smarie/python-pytest-harvest"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/decopatch[${PYTHON_USEDEP}]
>=dev-python/makefun-1.5[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
"
# https://github.com/smarie/python-pytest-cases/issues/330
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
<dev-python/pytest-8[${PYTHON_USEDEP}]
dev-python/pytest-cases[${PYTHON_USEDEP}]
dev-python/tabulate[${PYTHON_USEDEP}]
)
"
PATCHES=( "${FILESDIR}/${P}-strict-mkdocs.patch" )
EPYTEST_DESELECT=(
"pytest_harvest/tests/test_all_raw_with_meta_check.py::test_run_all_tests[test_get_session_results.py]"
"pytest_harvest/tests/test_all_raw_with_meta_check.py::test_run_all_tests[test_get_session_results_indirect_and_noparam.py]"
)
distutils_enable_tests pytest
python_prepare_all() {
sed "/pytest-runner/d" -i setup.cfg || die
distutils-r1_python_prepare_all
}
python_compile_all() {
docs_compile
}
python_test() {
epytest pytest_harvest/tests --doctest-modules
}