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 CB3D013825A for ; Sun, 15 May 2016 18:34:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85B8C1424B; Sun, 15 May 2016 18:34:35 +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 CE0B414242 for ; Sun, 15 May 2016 18:34:34 +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 CD36F340BF4 for ; Sun, 15 May 2016 18:34:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 434E7929 for ; Sun, 15 May 2016 18:34:31 +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: <1463336231.e004e7a3be9420790481630ffd9671d2a57a72ae.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: e004e7a3be9420790481630ffd9671d2a57a72ae X-VCS-Branch: repoman Date: Sun, 15 May 2016 18:34:31 +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: ffdb4871-b333-4a5f-8709-077b7567f164 X-Archives-Hash: 4de24617046d884c9c8df4570f2c0ff8 Message-ID: <20160515183431.4685sIO55hdjmSzZ9hOxfOEaTNTIIFFaGh3nlHt5QnQ@z> commit: e004e7a3be9420790481630ffd9671d2a57a72ae Author: Brian Dolbec gentoo org> AuthorDate: Sat May 14 23:39:39 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun May 15 18:17:11 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e004e7a3 .travis.yml: Update for the new repoman sub-structure Fix the metadata.xsd file copy to find it in the new repoman namespace Add repoman test suite Add lxml dependency .travis.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5213fee..53e60bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,22 @@ python: - 3.4 - 3.5 - pypy + +# command to install dependencies +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 cnf/metadata.xsd /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 + - cd repoman + - ./setup.py test + - ./setup.py install --root=/tmp/install-root + - cd .. + - sudo rsync -a /tmp/install-root/. / + - python -b -Wd -m repoman.tests.runTests