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 CCFFC138334 for ; Sun, 6 Jan 2019 14:52:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEE3CE0AAB; Sun, 6 Jan 2019 14:52:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C40C7E0AAB for ; Sun, 6 Jan 2019 14:52:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D8B2D335C6F for ; Sun, 6 Jan 2019 14:52:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B556A458 for ; Sun, 6 Jan 2019 14:52:14 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1546786314.3deb3266cc23db1815042c373997195ee6f9c93b.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/samri/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/samri/samri-9999.ebuild X-VCS-Directories: sci-biology/samri/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 3deb3266cc23db1815042c373997195ee6f9c93b X-VCS-Branch: master Date: Sun, 6 Jan 2019 14:52: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 978c973f-3208-45bc-9719-8718215face1 X-Archives-Hash: 633f7f31dab12bd297fffda9dac16afe commit: 3deb3266cc23db1815042c373997195ee6f9c93b Author: Horea Christian yandex com> AuthorDate: Sun Jan 6 14:51:18 2019 +0000 Commit: Horea Christian gmail com> CommitDate: Sun Jan 6 14:51:54 2019 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3deb3266 sci-biology/samri: updated ebuild including test suite, EAPI, and PYTHON_COMPAT bump Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Horea Christian yandex.com> sci-biology/samri/samri-9999.ebuild | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/sci-biology/samri/samri-9999.ebuild b/sci-biology/samri/samri-9999.ebuild index 24078c41e..df5845e98 100644 --- a/sci-biology/samri/samri-9999.ebuild +++ b/sci-biology/samri/samri-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python{2_7,3_4,3_5} ) +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) inherit distutils-r1 git-r3 @@ -48,10 +48,9 @@ python_test() { export MPLBACKEND="agg" export PATH=${TEST_DIR}/scripts:$PATH export PYTHONIOENCODING=utf-8 - pytest || die - for i in examples/*.py; do - echo "Executing ${EPYTHON} ${i}" - ${EPYTHON} "$i" || die "Example Python script $i failed with ${EPYTHON}" - done ./test_scripts.sh || die "Test scripts failed." + sed -i -e \ + "/def test_bru2bids():/i@pytest.mark.skip('Removed in full test suite, as this is already tested in `test_scripts.sh`')" \ + samri/pipelines/tests/test_repos.py || die + pytest -vv || die }