Skip to content

Commit

Permalink
repository: Update information with Codecov migration.
Browse files Browse the repository at this point in the history
  • Loading branch information
synicalsyntax authored and showell committed Jun 20, 2017
1 parent e9ec59c commit 9777496
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ install:
# Disable Travis CI's built-in NVM installation
- mispipe "mv ~/.nvm ~/.travis-nvm-disabled" ts

# Install coveralls, the library for the code coverage reporting tool we use
# Install codecov, the library for the code coverage reporting tool we use
- mispipe "pip install codecov" ts

# This is the main setup job for the test suite
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ missed-message emails, desktop apps, and much more.
Further information on the Zulip project and its features can be found
at <https://www.zulip.org>.

[![Build Status](https://travis-ci.org/zulip/zulip.svg?branch=master)](https://travis-ci.org/zulip/zulip) [![Coverage Status](https://coveralls.io/repos/github/zulip/zulip/badge.svg?branch=master)](https://coveralls.io/github/zulip/zulip?branch=master) [![docs](https://readthedocs.org/projects/zulip/badge/?version=latest)](http://zulip.readthedocs.io/en/latest/) [![Zulip chat](https://img.shields.io/badge/zulip-join_chat-brightgreen.svg)](https://chat.zulip.org) [![Twitter](https://img.shields.io/badge/[email protected]?style=flat)](http://twitter.com/zuliposs)
[![Build Status](https://travis-ci.org/zulip/zulip.svg?branch=master)](https://travis-ci.org/zulip/zulip) [![Coverage Status](https://img.shields.io/codecov/c/github/zulip/zulip.svg)](https://codecov.io/gh/zulip/zulip) [![docs](https://readthedocs.org/projects/zulip/badge/?version=latest)](http://zulip.readthedocs.io/en/latest/) [![Zulip chat](https://img.shields.io/badge/zulip-join_chat-brightgreen.svg)](https://chat.zulip.org) [![Twitter](https://img.shields.io/badge/[email protected]?style=flat)](http://twitter.com/zuliposs)

## Community

Expand Down
3 changes: 1 addition & 2 deletions docs/code-reviewing.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ participating in code review.
commit](https://travis-ci.org/zulip/zulip/builds/144300899), at
least one of which failed, and go to [one of the failing
tests](https://travis-ci.org/zulip/zulip/jobs/144300901) to see the
error.) Since Coveralls's data on changes isn't always accurate, one
should look at the test coverage situation directly.
error.)

* *Technical design.* There are a lot of considerations here:
security, migration paths/backwards compatibility, cost of new
Expand Down
2 changes: 1 addition & 1 deletion docs/mypy.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ So `{1: 'a', 2: 'b', 3: 'c'}` will be printed as `{int: str, ...}`.
Zulip is hoping to reach 100% of the codebase annotated with mypy
static types, and then enforce that it stays that way. Our current
coverage is shown in
[Coveralls](https://coveralls.io/github/zulip/zulip).
[Codecov](https://codecov.io/gh/zulip/zulip).

## Installing mypy

Expand Down
2 changes: 1 addition & 1 deletion tools/run-mypy
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ if args.quick:
if python_files:
rc = subprocess.call([mypy_command] + extra_args + python_files)
if args.linecoverage_report:
# Move the coverage report to where coveralls will look for it.
# Move the coverage report to where codecov will look for it.
try:
os.rename('var/linecoverage-report/coverage.txt', 'var/.coverage')
except OSError:
Expand Down

0 comments on commit 9777496

Please sign in to comment.