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 D541D13825A for ; Sun, 15 May 2016 01:24:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4402221C04E; Sun, 15 May 2016 01:24:45 +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 DAE7821C04E for ; Sun, 15 May 2016 01:24:44 +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 E1939340BCB for ; Sun, 15 May 2016 01:24:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8599F334 for ; Sun, 15 May 2016 01:24:40 +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: <1463275408.52c696972986cf738837d64ccdd0b2d0c8e02b4c.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: 52c696972986cf738837d64ccdd0b2d0c8e02b4c X-VCS-Branch: repoman Date: Sun, 15 May 2016 01:24:40 +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: ef56095e-3c32-44a2-a29f-bf1f2e27cc1e X-Archives-Hash: 82da2afd97e7558418794759cce015a1 commit: 52c696972986cf738837d64ccdd0b2d0c8e02b4c Author: Brian Dolbec gentoo org> AuthorDate: Sun May 15 01:23:28 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun May 15 01:23:28 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=52c69697 try #2 .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 97c5bfb..46d470b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,10 +11,11 @@ script: - sudo rsync -a /tmp/install-root/. / - python -b -Wd -m portage.tests.runTests # repoman test block - - repoman/setup.py test - - repoman/setup.py install --root=/tmp/install-root + - cd repoman + - ./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/ + - cp cnf/metadata.xsd /tmp/install-root/usr/lib/portage/cnf/ - sudo rsync -a /tmp/install-root/. / - python -b -Wd -m repoman.tests.runTests