pypel/.travis.yml
Daniele Tricoli 6bfdc75925 Use 2.7_with_system_site_packages and 3.2_with_system_site_packages
Travis use Ubuntu Precise so only Python 2.7 and 3.2 can use system site
packages.
2015-07-01 02:18:38 +02:00

18 lines
443 B
YAML

language: python
# GExiv2 is not pip-installable and Travis use Ubuntu Precise, so only
# Python 2.7 and 3.2 can use system site packages.
python:
- "2.7_with_system_site_packages"
- "3.2_with_system_site_packages"
before_install:
- sudo apt-get update
- sudo apt-get install -y libgexiv2-1 python-gi python3-gi
install:
- pip install coverage pillow nose six
- pip install .
script: nosetests
cache:
- apt
- directories:
- $HOME/.cache/pip