Skip to content

Commit dd71c3e

Browse files
authored
Update .travis.yml
1 parent d589e1e commit dd71c3e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ python:
77
install:
88
- pip install -r requirements.txt
99
- pip install isort black flake8 pylint
10+
- pip install codecov
1011
script:
1112
- python tests.py
13+
- coverage run tests.py
1214
- isort --check-only --recursive coderunner
1315
- black --check --diff coderunner
1416
- flake8 coderunner --max-line-length=88 --ignore=F401
1517
- pylint coderunner --disable=bad-continuation,invalid-name,too-many-instance-attributes,too-many-arguments
18+
after_success:
19+
- codecov

0 commit comments

Comments
 (0)