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 D0262158086 for ; Mon, 18 Oct 2021 05:09:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 146ABE088A; Mon, 18 Oct 2021 05:09:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9276E088A for ; Mon, 18 Oct 2021 05:09:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9E45E3437E3 for ; Mon, 18 Oct 2021 05:09:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CF888E for ; Mon, 18 Oct 2021 05:09:32 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1634533760.8ba31b3a42c7423833997975c7c920a97d5145bb.sam@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.2.6.ebuild dev-python/moto/moto-2.2.9.ebuild X-VCS-Directories: dev-python/moto/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8ba31b3a42c7423833997975c7c920a97d5145bb X-VCS-Branch: master Date: Mon, 18 Oct 2021 05:09:32 +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: 0ad3a80f-d15b-42e5-b32c-17e9dc1694a9 X-Archives-Hash: aa2793b27b02befbb7ba1fce25f23b66 commit: 8ba31b3a42c7423833997975c7c920a97d5145bb Author: Sam James gentoo org> AuthorDate: Mon Oct 18 05:08:27 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Oct 18 05:09:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba31b3a dev-python/moto: ignore tests in 2.2.6 more Bug: https://bugs.gentoo.org/814716 Bug: https://bugs.gentoo.org/807031 Signed-off-by: Sam James gentoo.org> dev-python/moto/moto-2.2.6.ebuild | 7 +++++-- dev-python/moto/moto-2.2.9.ebuild | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-python/moto/moto-2.2.6.ebuild b/dev-python/moto/moto-2.2.6.ebuild index e8cd22eb118..ebe2646585e 100644 --- a/dev-python/moto/moto-2.2.6.ebuild +++ b/dev-python/moto/moto-2.2.6.ebuild @@ -61,10 +61,13 @@ python_prepare_all() { } python_test() { - local ignore=( + local EPYTEST_IGNORE=( # incompatible versions? tests/test_core/test_decorator_calls.py tests/test_s3/test_s3_classdecorator.py + ) + + local EPYTEST_DESELECT=( # Needs network (or docker?) but not marked as such, bug #807031 # TODO: report upstream tests/test_batch/test_batch_jobs.py::test_terminate_job @@ -77,5 +80,5 @@ python_test() { # 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' ${ignore[@]/#/--ignore } + epytest -p no:django -m 'not network' } diff --git a/dev-python/moto/moto-2.2.9.ebuild b/dev-python/moto/moto-2.2.9.ebuild index 90b1a6e1227..5369dcc4944 100644 --- a/dev-python/moto/moto-2.2.9.ebuild +++ b/dev-python/moto/moto-2.2.9.ebuild @@ -69,6 +69,7 @@ python_test() { tests/test_swf/responses/test_timeouts.py::test_activity_task_heartbeat_timeout_boto3 tests/test_swf/responses/test_timeouts.py::test_decision_task_start_to_close_timeout_boto3 tests/test_swf/responses/test_timeouts.py::test_workflow_execution_start_to_close_timeout_boto3 + # Needs network (or docker?) but not marked as such, bug #807031 # TODO: report upstream tests/test_batch/test_batch_jobs.py::test_terminate_job