There was an error while loading. Please reload this page.
1 parent ea3344a commit f7347e6Copy full SHA for f7347e6
1 file changed
.travis.yml
@@ -12,8 +12,15 @@ python:
12
sudo: false
13
install:
14
- pip install coveralls
15
+ - pip install protobuf
16
script:
17
- 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
18
+ - |
19
+ if [ "$TRAVIS_PYTHON_VERSION" = "2.7" ]; then
20
+ cd python
21
+ coverage run --source=phonenumbers ./testwrapper.py
22
+ coverage run --source=phonenumbers.pb2 ./testpb2.py
23
+ cd ..
24
+ fi
25
after_success:
26
- cd python && coveralls && cd ..
0 commit comments