Skip to content

Commit

Permalink
Merge pull request #45 from miketheman/miketheman/test-more-pythons
Browse files Browse the repository at this point in the history
Test more pythons
  • Loading branch information
thebjorn authored Nov 24, 2019
2 parents 907a1a2 + 6e84d23 commit 4e5adde
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
language: python
sudo: false

python:
- "2.7"
- "3.6"

addons:
apt:
packages:
- graphviz

install:
- pip install -r requirements.txt
- pip install coveralls

script:
py.test -vv --cov=pydeps .

after_success:
coveralls
language: python
sudo: false

python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"

addons:
apt:
packages:
- graphviz

install:
- pip install -r requirements.txt
- pip install coveralls

script:
py.test -vv --cov=pydeps .

after_success:
coveralls

0 comments on commit 4e5adde

Please sign in to comment.