Skip to content

Commit

Permalink
Adds support for coveralls (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaps authored and ethanchewy committed Oct 18, 2019
1 parent 211038e commit c41b744
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ language: python
python:
- "3.6"
# command to install dependencies
install: "pip install -r requirements.txt"
install:
- "pip install -r requirements.txt"
- pip install coverage
- pip install coveralls
# command to run tests
script:
- python -m tests.test_linter
- coverage run --source=PythonBuddy -m unittest tests/test_linter.py
- coverage report -m
- coveralls

0 comments on commit c41b744

Please sign in to comment.