Skip to content

Commit

Permalink
Add Travis and Coveralls support
Browse files Browse the repository at this point in the history
  • Loading branch information
craffel committed Oct 14, 2016
1 parent 5baef0a commit db1c3c3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: python

notifications:
email: false

python:
- "2.7"
- "3.5"

before_install:
- pip install python-coveralls numpydoc pep8 nose

install:
- pip install -e .

before_script:
- pep8 pretty_midi tests examples

script:
- nosetests -v --with-coverage --cover-package=pretty_midi

after_success:
- coveralls

0 comments on commit db1c3c3

Please sign in to comment.