pipdeptree/.travis.yml

18 lines
264 B
YAML
Raw Normal View History

---
# travis-ci config for pipdeptree
2014-06-12 20:13:28 +00:00
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
before_install:
- pip install pip>=8.0.2
- make test-env
install: pip install .
script: py.test -v
after_script: make clean clean-env
sudo: false