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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A1EA113835B for ; Sun, 11 Apr 2021 10:47:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9F75E08FA; Sun, 11 Apr 2021 10:47:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B1402E08FC for ; Sun, 11 Apr 2021 10:47:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AC1C2340B3A for ; Sun, 11 Apr 2021 10:47:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 442D966A for ; Sun, 11 Apr 2021 10:47:29 +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: <1618138020.315f1b0d75754b806d434fa26dd1c6d383f21608.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/moto/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/moto/moto-2.0.2.ebuild X-VCS-Directories: dev-python/moto/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 315f1b0d75754b806d434fa26dd1c6d383f21608 X-VCS-Branch: master Date: Sun, 11 Apr 2021 10:47:29 +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: 0ab31738-9224-4b77-96ec-f987f5db45ac X-Archives-Hash: a2af2d8081f6c592b3b14a720bac8f74 commit: 315f1b0d75754b806d434fa26dd1c6d383f21608 Author: Michał Górny gentoo org> AuthorDate: Sun Apr 11 08:57:22 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 11 10:47:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=315f1b0d dev-python/moto: Force-disable pytest-django to fix test failures Signed-off-by: Michał Górny gentoo.org> dev-python/moto/moto-2.0.2.ebuild | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dev-python/moto/moto-2.0.2.ebuild b/dev-python/moto/moto-2.0.2.ebuild index 9116b3688f7..3fd5af1d7a6 100644 --- a/dev-python/moto/moto-2.0.2.ebuild +++ b/dev-python/moto/moto-2.0.2.ebuild @@ -65,10 +65,7 @@ python_prepare_all() { } python_test() { - local deselect=( - # network - tests/test_stepfunctions/test_stepfunctions.py::test_state_machine_creation_fails_with_invalid_names - ) - - epytest -m 'not network' ${deselect[@]/#/--deselect } + # pytest-django causes freezegun try to mangle stuff inside django + # which fails when django is not really used + epytest -p no:django -m 'not network' }