run from tests

This commit is contained in:
Roman Zeyde
2014-08-05 18:09:55 +03:00
parent 4c99ff2ebd
commit f9c0444e83
2 changed files with 5 additions and 6 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 tests/run.py
script:
- cd tests
- coverage run --source=amodem -m py.test
after_success:
- coverage report

View File

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