2015-07-29 18:37:15 +00:00
|
|
|
---
|
|
|
|
# travis-ci config for pipdeptree
|
|
|
|
|
2014-06-12 20:13:28 +00:00
|
|
|
language: python
|
2015-07-29 18:37:15 +00:00
|
|
|
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
|
2016-02-14 14:03:05 +00:00
|
|
|
before_install:
|
2016-02-14 14:06:16 +00:00
|
|
|
- pip install -U pip>=8.0.2
|
2017-01-25 17:14:58 +00:00
|
|
|
- pip install graphviz
|
2016-02-14 14:03:05 +00:00
|
|
|
- make test-env
|
|
|
|
install: pip install .
|
2015-07-29 18:37:15 +00:00
|
|
|
script: py.test -v
|
|
|
|
after_script: make clean clean-env
|
2015-07-29 18:53:10 +00:00
|
|
|
sudo: false
|