Install the graphviz apt-package and graphviz lib in travis conf

This commit is contained in:
Vineet Naik 2020-06-05 01:16:28 +05:30
parent bcee1a4e8e
commit b9787600bf
1 changed files with 5 additions and 0 deletions

View File

@ -9,9 +9,14 @@ python:
- "3.6"
- "3.7"
- "3.8"
addons:
apt:
packages:
- graphviz
before_install:
- pip install -U pip>=8.0.2
- pip install pytest
- pip install graphviz
install: pip install .
script: pytest -v tests/test_pipdeptree.py
sudo: false