Skip to content
This repository has been archived by the owner on May 7, 2022. It is now read-only.

Commit

Permalink
Configuration for Coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
icook committed Aug 22, 2013
1 parent 514d7a2 commit 04a031a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "2.6"
- "2.7"
- "3.3"
# command to install dependencies
install:
- "pip install . --use-mirrors"
- "pip install beautifulsoup4 nose coverage"
- "pip install . --use-mirrors"
- "pip install beautifulsoup4 nose coverage python-coveralls"
# command to run tests
script: nosetests
script:
- nosetests --with-coverage --cover-package=yota
after_success:
- coveralls
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'jinja2'
]

testing_extras = ['nose', 'coverage', 'beautifulsoup4']
testing_extras = ['nose', 'coverage', 'beautifulsoup4', 'python-coveralls']
docs_extras = ['Sphinx', 'sphinxcontrib-fulltoc']

try:
Expand Down

0 comments on commit 04a031a

Please sign in to comment.