Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for coveralls.io to our Travis build process #567

Merged
merged 3 commits into from
Oct 7, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,9 @@ install:
# We easy_install a binary riak_pb package because pip install needs `protoc'.
- "easy_install riak_pb"
- "pip install -r requirements.pip --use-mirrors"
- "pip install coveralls --use-mirrors"
- "python setup.py install"
script: trial vumi
script:
- coverage run --source=vumi `which trial` vumi
after_success:
- coveralls
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing newline.