blob: 7fe3c06aad2346f23294f2e9b2153420f5825a13 [file] [log] [blame]
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- pypy
# command to install dependencies
install: "pip install lxml"
script:
- printf "[build_ext]\nportage-ext-modules=true" >> setup.cfg
- ./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
- repoman/setup.py test
- repoman/setup.py install --root=/tmp/install-root
- sudo rsync -a /tmp/install-root/. /
- python -b -Wd -m repoman.tests.runTests