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 0F91F1382C5 for ; Tue, 11 May 2021 20:55:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B96EE0825; Tue, 11 May 2021 20:55:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5554FE0825 for ; Tue, 11 May 2021 20:55:52 +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 62068335D0F for ; Tue, 11 May 2021 20:55:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C03C9963 for ; Tue, 11 May 2021 17:20:48 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1620753604.eb4b2b6723a39ac985e7041659c863b0966a841f.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyftpdlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyftpdlib/pyftpdlib-1.5.6-r1.ebuild X-VCS-Directories: dev-python/pyftpdlib/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: eb4b2b6723a39ac985e7041659c863b0966a841f X-VCS-Branch: master Date: Tue, 11 May 2021 17:20: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: 5480819c-d57f-4531-8c56-1a4537e6c678 X-Archives-Hash: 10f85eb6d74d7badbfaac9077fc03956 commit: eb4b2b6723a39ac985e7041659c863b0966a841f Author: Louis Sautier gentoo org> AuthorDate: Tue May 11 17:12:07 2021 +0000 Commit: Louis Sautier gentoo org> CommitDate: Tue May 11 17:20:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb4b2b67 dev-python/pyftpdlib: skip more broken tests, use epytest Closes: https://bugs.gentoo.org/759040 Signed-off-by: Louis Sautier gentoo.org> dev-python/pyftpdlib/pyftpdlib-1.5.6-r1.ebuild | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/dev-python/pyftpdlib/pyftpdlib-1.5.6-r1.ebuild b/dev-python/pyftpdlib/pyftpdlib-1.5.6-r1.ebuild index 76504eb3fca..a063b7e0f3b 100644 --- a/dev-python/pyftpdlib/pyftpdlib-1.5.6-r1.ebuild +++ b/dev-python/pyftpdlib/pyftpdlib-1.5.6-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_COMPAT=( python3_{7..9} ) PYTHON_REQ_USE="ssl(+)" inherit distutils-r1 @@ -64,10 +64,17 @@ python_test() { # https://bugs.gentoo.org/758686 pyftpdlib/test/test_functional.py::ThreadedFTPTests::test_idle_timeout pyftpdlib/test/test_functional.py::ThreadedFTPTests::test_stou_max_tries + # https://github.com/giampaolo/pyftpdlib/issues/550 + # https://bugs.gentoo.org/759040 + pyftpdlib/test/test_functional.py::TestConfigurableOptions::test_masquerade_address + pyftpdlib/test/test_functional.py::TestConfigurableOptions::test_masquerade_address_map + pyftpdlib/test/test_functional_ssl.py::TestConfigurableOptions::test_masquerade_address + pyftpdlib/test/test_functional_ssl.py::TestConfigurableOptions::test_masquerade_address_map + pyftpdlib/test/test_functional_ssl.py::TestConfigurableOptionsTLSMixin::test_masquerade_address + pyftpdlib/test/test_functional_ssl.py::TestConfigurableOptionsTLSMixin::test_masquerade_address_map ) # Tests fail with TZ=GMT, see https://bugs.gentoo.org/666623 - TZ=UTC+1 pytest -vv ${skipped_tests[@]/#/--deselect } \ - || die "Tests failed with ${EPYTHON}" + TZ=UTC+1 epytest ${skipped_tests[@]/#/--deselect } } python_install_all() {