Merge pull request #9 from romanz/coverage-debug

Make coverage reporting work
This commit is contained in:
Roman Zeyde
2014-08-05 18:28:09 +03:00
2 changed files with 6 additions and 7 deletions

View File

@@ -3,11 +3,12 @@ python:
- "2.7"
install:
- "pip install ."
- "pip install -r requirements.txt"
- "pip install coveralls"
- pip install .
- pip install coveralls
script: coverage run --source=amodem tests/run.py
script:
- cd tests
- coverage run --source=amodem -m py.test
after_success:
after_success:
- coveralls

View File

@@ -1,2 +0,0 @@
import pytest
pytest.main()