From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 60C3E158013 for ; Sat, 9 Dec 2023 16:38:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 177EE2BC037; Sat, 9 Dec 2023 16:38:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 006C52BC037 for ; Sat, 9 Dec 2023 16:38:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 264D9342FB0 for ; Sat, 9 Dec 2023 16:38:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3952A135D for ; Sat, 9 Dec 2023 16:38:45 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1702139817.2b48548d186f68ad0bebf9ffbb72b2bc23f454a8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/django/django-4.1.12-r1.ebuild X-VCS-Directories: dev-python/django/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2b48548d186f68ad0bebf9ffbb72b2bc23f454a8 X-VCS-Branch: master Date: Sat, 9 Dec 2023 16:38:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 61b44ddb-7cc9-475d-909d-7c94881bd2dd X-Archives-Hash: 635b58298d9050676c6cf4a75e426028 commit: 2b48548d186f68ad0bebf9ffbb72b2bc23f454a8 Author: Michał Górny gentoo org> AuthorDate: Sat Dec 9 16:18:23 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 9 16:36:57 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b48548d dev-python/django: Backport --parallel test logic to 4.1.12-r1 Signed-off-by: Michał Górny gentoo.org> dev-python/django/django-4.1.12-r1.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/django/django-4.1.12-r1.ebuild b/dev-python/django/django-4.1.12-r1.ebuild index a8b776d883a6..382e7bd0fb47 100644 --- a/dev-python/django/django-4.1.12-r1.ebuild +++ b/dev-python/django/django-4.1.12-r1.ebuild @@ -7,7 +7,7 @@ DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( pypy3 python3_{10..11} ) PYTHON_REQ_USE='sqlite?,threads(+)' -inherit bash-completion-r1 distutils-r1 optfeature verify-sig +inherit bash-completion-r1 distutils-r1 multiprocessing optfeature verify-sig DESCRIPTION="High-level Python web framework" HOMEPAGE=" @@ -76,7 +76,8 @@ src_unpack() { python_test() { # Tests have non-standard assumptions about PYTHONPATH, # and don't work with ${BUILD_DIR}/lib. - PYTHONPATH=. "${EPYTHON}" tests/runtests.py --settings=test_sqlite -v2 || + PYTHONPATH=. "${EPYTHON}" tests/runtests.py --settings=test_sqlite \ + -v2 --parallel="${EPYTEST_JOBS:-$(makeopts_jobs)}" || die "Tests fail with ${EPYTHON}" }