pipdeptree/.travis.yml

23 lines
338 B
YAML
Raw Normal View History

---
# travis-ci config for pipdeptree
2014-06-12 20:13:28 +00:00
language: python
python:
- "2.7"
- "3.3"
- "3.4"
2016-01-28 17:06:16 +00:00
- "3.5"
2017-01-25 16:36:18 +00:00
- "3.6"
addons:
apt:
packages:
- graphviz
before_install:
2016-02-14 14:06:16 +00:00
- pip install -U pip>=8.0.2
- pip install graphviz
- make test-env
install: pip install .
script: py.test -v
after_script: make clean clean-env
sudo: false