Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2925918

Browse files
committed
Added codecov config and removed coveralls
1 parent c84a74c commit 2925918

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.coveralls.yml

-2
This file was deleted.

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ cache: pip
1616
install:
1717
- pip install -r dev_requirements.txt
1818
script:
19-
- py.test -lv --cov stream --cov-report term-missing
19+
- py.test -lv --cov=./
2020
after_script:
2121
- "pep8 --exclude=migrations --ignore=E501,E225,W293 stream"
2222
- "python setup.py install"
23-
23+
- "codecov"

dev_requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pytest==3.2.5
2-
python-coveralls
3-
unittest2
2+
codecov==2.0.15
3+
unittest2==1.1.0
44
pytest-cov==2.5.1
55
python-dateutil
66
-e .

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def run_tests(self):
4747
# import here, cause outside the eggs aren't loaded
4848
import pytest
4949
errno = pytest.main(
50-
'--cov stream --cov-report term-missing -v')
50+
'-v --cov=./')
5151
sys.exit(errno)
5252

5353
setup(

0 commit comments

Comments
 (0)