diff --git a/.travis.yml b/.travis.yml index 1b71f81..f991d48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,5 @@ python: - "3.4" - "3.5" -script: python setup.py test \ No newline at end of file +script: python setup.py test --cov metrik +after_success: coveralls \ No newline at end of file diff --git a/setup.py b/setup.py index af1e7cb..d6f8ad1 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ setup( 'pytest_runner' ], tests_require=[ - 'pytest' + 'pytest', + 'python-coveralls' ] ) \ No newline at end of file