Skip to content

Commit

Permalink
Attempt to turn on coveralls tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddrysdale committed Oct 6, 2015
1 parent 8fef4f8 commit 16b1fbc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
language: python
python:
# - "2.5"
- "2.6"
# - "2.6"
- "2.7"
# - "3.0"
# - "3.1"
- "3.2"
- "3.3"
- "3.4"
- "3.5"

script: make -C tools/python test
# - "3.2"
# - "3.3"
# - "3.4"
# - "3.5"
sudo: false
install:
- pip install coveralls
script:
- make -C tools/python test
- if [ "$TRAVIS_PYTHON_VERSION" = "2.7" ]; then cd python && coverage run --source=phonenumbers ./testwrapper.py && coverage report -m && cd ..; fi
after_success:
- cd python && coveralls && cd ..
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
phonenumbers Python Library
===========================

[![Coverage Status](https://coveralls.io/repos/daviddrysdale/python-phonenumbers/badge.svg?branch=dev&service=github)](https://coveralls.io/github/daviddrysdale/python-phonenumbers?branch=dev)

This is a Python port of [Google's libphonenumber library](https://github.com/googlei18n/libphonenumber)
It supports Python 2.5-2.7 and Python 3.x (in the same codebase, with no
[2to3](http://docs.python.org/2/library/2to3.html) conversion needed).
Expand Down

0 comments on commit 16b1fbc

Please sign in to comment.