Remove zmq as requirement, Add coverage report

This commit is contained in:
HelloZeroNet 2015-09-20 13:29:35 +02:00
parent f8b35c9a4c
commit 5f71e79a2b
3 changed files with 9 additions and 2 deletions

View File

@ -3,8 +3,10 @@ python:
- "2.7"
install:
- pip install -r requirements.txt
script: python -m pytest src/Test
script:
- python -m pytest src/Test --cov src --cov-config src/Test/coverage.ini
before_install:
- pip install codecov
- pip install pytest-cov
after_success:
- codecov

View File

@ -1,3 +1,2 @@
gevent==1.0.1
pyzmq==14.4.1
msgpack-python==0.4.4

6
src/Test/coverage.ini Normal file
View File

@ -0,0 +1,6 @@
[run]
branch = True
omit =
src/lib/*
src/Test/*
[report]