Skip to content

Commit

Permalink
Add .travis.yml file for Travis CI and Coveralls.io integration
Browse files Browse the repository at this point in the history
  • Loading branch information
singingwolfboy committed Mar 7, 2014
1 parent 762e69b commit e074dbe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: python
python:
- "2.7"
- "3.3"
install:
- sudo apt-get install -qq python-enchant
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then pip install backports.ssl_match_hostname; fi
- pip install -r dev-requirements.txt
- pip install coveralls
script:
- coverage run --source willie -m py.test .
- coverage report --show-missing
after_success:
- coveralls

0 comments on commit e074dbe

Please sign in to comment.