Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Sat, 07 Apr 2018 02:08:24
Message-Id: 1523065321.5bbe149fa5ace7d31fc7109b4571ac6009f91772.zmedico@gentoo
1 commit: 5bbe149fa5ace7d31fc7109b4571ac6009f91772
2 Author: Manuel RĂ¼ger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 6 22:44:18 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 7 01:42:01 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=5bbe149f
7
8 travis: Install xmllint for repoman test suite
9
10 Otherwise repoman/pym/repoman/tests/simple/test_simple.py doesn't run
11 all tests
12
13 Closes: https://github.com/gentoo/portage/pull/291
14
15 .travis.yml | 2 ++
16 1 file changed, 2 insertions(+)
17
18 diff --git a/.travis.yml b/.travis.yml
19 index 94ed2dcb1..9313fc645 100644
20 --- a/.travis.yml
21 +++ b/.travis.yml
22 @@ -8,6 +8,8 @@ python:
23
24 # command to install dependencies
25 install:
26 + - sudo apt-get update -qq
27 + - sudo apt-get install -y libxml2-utils
28 - pip install lxml
29 # python3.6+ has sha3 built-in, for older versions install pysha3
30 # (except for pypy where pysha3 is broken)