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 0D96915808B for ; Thu, 17 Feb 2022 13:17:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01FF3E083D; Thu, 17 Feb 2022 13:17:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 D8D97E083D for ; Thu, 17 Feb 2022 13:17:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BC354342E24 for ; Thu, 17 Feb 2022 13:17:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28A2D1EF for ; Thu, 17 Feb 2022 13:17:48 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1645103861.9cfd8c9d4f093ed555860ed918d8a25c1d40addc.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-lint/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/ansible-lint/ansible-lint-5.4.0.ebuild X-VCS-Directories: app-admin/ansible-lint/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 9cfd8c9d4f093ed555860ed918d8a25c1d40addc X-VCS-Branch: master Date: Thu, 17 Feb 2022 13:17:48 +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: c18a3fa2-a9cb-411a-a766-fd747a2704ff X-Archives-Hash: 8f8a6e293aabe60574783e74f3854d0c commit: 9cfd8c9d4f093ed555860ed918d8a25c1d40addc Author: Marek Szuba gentoo org> AuthorDate: Thu Feb 17 13:16:05 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Feb 17 13:17:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cfd8c9d app-admin/ansible-lint: deselect more network-dependent tests It would be SO nice if my test containers stopped ignoring the network sandbox, or at least if I remembered that they do. Closes: https://bugs.gentoo.org/833528 Signed-off-by: Marek Szuba gentoo.org> app-admin/ansible-lint/ansible-lint-5.4.0.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app-admin/ansible-lint/ansible-lint-5.4.0.ebuild b/app-admin/ansible-lint/ansible-lint-5.4.0.ebuild index 4f26c3d985c4..a2b7755f9476 100644 --- a/app-admin/ansible-lint/ansible-lint-5.4.0.ebuild +++ b/app-admin/ansible-lint/ansible-lint-5.4.0.ebuild @@ -38,12 +38,16 @@ BDEPEND=" # Skip problematic tests: # - test_call_from_outside_venv doesn't play nicely with the sandbox -# - test_eco tests require Internet access +# - all test_eco and some test_prerun tests require Internet access # - as of 5.4.0, test_cli_auto_detect fails even when run manually with tox EPYTEST_DESELECT=( test/TestUtils.py::test_cli_auto_detect - test/test_eco + test/test_eco.py test/test_main.py::test_call_from_outside_venv + test/test_prerun.py::test_install_collection + test/test_prerun.py::test_prerun_reqs_v1 + test/test_prerun.py::test_prerun_reqs_v2 + test/test_prerun.py::test_require_collection_wrong_version ) distutils_enable_tests pytest