From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D3A8113825A for ; Sun, 15 May 2016 07:23:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CC82E0825; Sun, 15 May 2016 07:23:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6074E0825 for ; Sun, 15 May 2016 07:23:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7EC36340B65 for ; Sun, 15 May 2016 07:23:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7CD81336 for ; Sun, 15 May 2016 07:23:45 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1463296923.ff2aeaf114110fee111f8c8f85ab48a787d2d191.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:repoman commit in: / X-VCS-Repository: proj/portage X-VCS-Files: .travis.yml X-VCS-Directories: / X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: ff2aeaf114110fee111f8c8f85ab48a787d2d191 X-VCS-Branch: repoman Date: Sun, 15 May 2016 07:23:45 +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: 8602d450-1a74-4483-8d7d-22d3644baf4d X-Archives-Hash: 70a628826c5008d36957d219522a3e98 commit: ff2aeaf114110fee111f8c8f85ab48a787d2d191 Author: Brian Dolbec gentoo org> AuthorDate: Sun May 15 07:22:03 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun May 15 07:22:03 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ff2aeaf1 try all not installed tests before the installs and installed tests .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c098c4d..b684fdc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,14 +11,13 @@ install: "pip install lxml" script: - ./setup.py test - - ./setup.py install --root=/tmp/install-root # prevent repoman tests from trying to fetch metadata.xsd - mkdir -p /tmp/install-root/usr/lib/portage/cnf - cp repoman/cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/ - - sudo rsync -a /tmp/install-root/. / - - python -b -Wd -m portage.tests.runTests - # repoman test block + #- sudo rsync -a /tmp/install-root/. / - repoman/setup.py test - repoman/setup.py install --root=/tmp/install-root + - ./setup.py install --root=/tmp/install-root - sudo rsync -a /tmp/install-root/. / + - python -b -Wd -m portage.tests.runTests - python -b -Wd -m repoman.tests.runTests