commit: cd5fda496c0114b0c59dea925748ca53ce060252 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri Mar 26 12:28:11 2021 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Fri Mar 26 12:35:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd5fda49
dev-python/djangorestframework: Enable tests Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/djangorestframework/Manifest | 2 +- .../djangorestframework-3.12.2.ebuild | 28 ++++++++++++++++++---- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/dev-python/djangorestframework/Manifest b/dev-python/djangorestframework/Manifest index c2e51fa366e..e95b2a7e64b 100644 --- a/dev-python/djangorestframework/Manifest +++ b/dev-python/djangorestframework/Manifest @@ -1 +1 @@ -DIST djangorestframework-3.12.2.tar.gz 842597 BLAKE2B f450d55ade3d9d2d21bedba50c8dd6437bde383f6b30a2987a1a4fd224b6a72a03fdaf878ce72f02c2791fe2ebee02f3d9e0915d979e4f70e2f0cb9615d4a299 SHA512 d3a43212a4fb2caec27f815af0c52f3c0d2c9933febfea246429b24640b3cf23668640a4c3ddb3e3453e74a904a2b439443bb01cf24b664d19e896c353f2cba3 +DIST django-rest-framework-3.12.2.gh.tar.gz 8856613 BLAKE2B 77d0b3bad38c7829387de752d913eb758935615213d8f8ada9422ecf25142383c1b11a1c95d5fc9f4cf7634e494119ddcb236c810e85429fa8cd4ecd1ef88132 SHA512 7c3e712897562eff14ddfa4ded6627d6b4263001e0c9a4047b92da43c0fd86e8ac9d09bb54bb87ce0d4e7743553c4733a60b18327f7e4d481cb9898593731467 diff --git a/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild b/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild index b280f1c308d..8530587f35d 100644 --- a/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild +++ b/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild @@ -7,16 +7,34 @@ PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 +MY_P=django-rest-framework-${PV} DESCRIPTION="Web APIs with django made easy" -HOMEPAGE="https://www.django-rest-framework.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +HOMEPAGE="https://www.django-rest-framework.org/" +SRC_URI=" + https://github.com/encode/django-rest-framework/archive/${PV}.tar.gz + -> ${MY_P}.gh.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" -RESTRICT="test" RDEPEND=">=dev-python/django-1.11[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" +BDEPEND=" + test? ( + dev-python/coreapi[${PYTHON_USEDEP}] + dev-python/coreschema[${PYTHON_USEDEP}] + dev-python/pytest-django[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + )" -distutils_enable_tests setup.py +distutils_enable_tests pytest + +python_test() { + local deselect=( + # TODO + tests/test_description.py::TestViewNamesAndDescriptions::test_markdown + ) + + epytest ${deselect[@]/#/--deselect } +}