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 7E034138334 for ; Fri, 13 Jul 2018 07:53:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8DB2AE087E; Fri, 13 Jul 2018 07:53:18 +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 5E54CE087E for ; Fri, 13 Jul 2018 07:53:18 +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 4C3E233BEAE for ; Fri, 13 Jul 2018 07:53:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65A89359 for ; Fri, 13 Jul 2018 07:53:14 +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: <1531468389.f0685c528d2197174335be13b6892efb5865cf52.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlalchemy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild X-VCS-Directories: dev-python/sqlalchemy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f0685c528d2197174335be13b6892efb5865cf52 X-VCS-Branch: master Date: Fri, 13 Jul 2018 07:53:14 +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-Archives-Salt: 387bb2c8-32db-49d3-b1bb-84834f80d952 X-Archives-Hash: 00a3f47cb2c803722b115e7444b35756 commit: f0685c528d2197174335be13b6892efb5865cf52 Author: Michał Górny gentoo org> AuthorDate: Fri Jul 13 07:04:19 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 13 07:53:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0685c52 dev-python/sqlalchemy: Clean python_test up Remove meaningless code from python_test(). dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild index fe9d6c4401d..4a8b2a2bac4 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild @@ -50,17 +50,7 @@ python_compile() { } python_test() { - # Create copies of necessary files in BUILD_DIR. - # https://bitbucket.org/zzzeek/sqlalchemy/issue/3144/ - cp -pR examples sqla_nose.py setup.cfg test "${BUILD_DIR}" || die - pushd "${BUILD_DIR}" > /dev/null || die - if [[ "${EPYTHON}" == "python3.2" ]]; then - 2to3 --no-diffs -w test || die - fi - # Recently upstream elected to make the testsuite also pytest capable - # "${PYTHON}" sqla_nose.py || die "Testsuite failed under ${EPYTHON}" - py.test --verbose test || die "Testsuite failed under ${EPYTHON}" - popd > /dev/null + pytest -vv test || die "Testsuite failed under ${EPYTHON}" } python_install_all() {