pipdeptree/.travis.yml

18 lines
267 B
YAML

---
# travis-ci config for pipdeptree
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
before_install:
- pip install -U pip>=8.0.2
- make test-env
install: pip install .
script: py.test -v
after_script: make clean clean-env
sudo: false