Skip to content

Commit 28873e2

Browse files
docs(README): fix URLs
Removed trailing `>`s, and corrected coverage.py address.
1 parent 7105c46 commit 28873e2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ after_success:
1515
```
1616
1717
### Produce Coverage Reports
18-
[`coverage.py`](https://bitbucket.org/ned/coveragepy) is required to collect coverage metrics.
18+
[coverage.py](https://github.com/nedbat/coveragepy) is required to collect coverage metrics.
1919
2020
Below are some examples on how to include coverage tracking during your tests. Codecov will call `coveragexml -i` automatically to generate the coverage xml output, which will be archived and processed server side.
2121

22-
You may need to configure a `.coveragerc` file. Learn more [here](http://coverage.readthedocs.org/en/latest/config.html>). Start with this [generic .coveragerc](https://gist.github.com/codecov-io/bf15bde2c7db1a011b6e>) for example.
22+
You may need to configure a `.coveragerc` file. Learn more [here](http://coverage.readthedocs.org/en/latest/config.html). Start with this [generic .coveragerc](https://gist.github.com/codecov-io/bf15bde2c7db1a011b6e) for example.
2323

2424
We highly suggest adding `source` to your `.coveragerc` which solves a number of issues collecting coverage.
2525

@@ -40,7 +40,7 @@ pytest --cov=./
4040
```
4141
nosetest --with-coverage
4242
```
43-
See the [Offical Nose coverage docs](http://nose.readthedocs.org/en/latest/plugins/cover.html>) for more information.
43+
See the [Offical Nose coverage docs](http://nose.readthedocs.org/en/latest/plugins/cover.html) for more information.
4444
4545
### Testing with ``tox``
4646
@@ -54,12 +54,12 @@ commands = codecov
5454

5555
### FAQ
5656
- Q: What's the difference between the codecov-bash and codecov-python uploader?
57-
A: As far as python is concerned, *nothing*. You may choose to use either uploader. Codecov recommends **using the bash uploader when possible** as it supports more unique repository setups. Learn more at [codecov/codecov-bash](https://github.com/codecov/codecov-bash>) and [codecov/codecov-python](https://github.com/codecov/codecov-python>).
57+
A: As far as python is concerned, *nothing*. You may choose to use either uploader. Codecov recommends **using the bash uploader when possible** as it supports more unique repository setups. Learn more at [codecov/codecov-bash](https://github.com/codecov/codecov-bash) and [codecov/codecov-python](https://github.com/codecov/codecov-python).
5858
- Q: Why am I seeing `No data to report`?
5959
A: This output is written by running the command `coverage xml` and states that there were no `.coverage` files found.
6060
1. Make sure coverage is enabled. See Enabling Coverage
6161
2. You may need to run `coverage combine` before running Codecov.
62-
3. Using Docker? Please follow this step: [Testing with Docker: Codecov Inside Docker](https://github.com/codecov/support/wiki/Testing-with-Docker#codecov-inside-docker>).
62+
3. Using Docker? Please follow this step: [Testing with Docker: Codecov Inside Docker](https://github.com/codecov/support/wiki/Testing-with-Docker#codecov-inside-docker).
6363
- Q: Can I upload my `.coverage` files?
6464
A: **No**, these files contain coverage data but are not properly mapped back to the source code. We rely on `coveragepy` to handle this by calling `coverage xml` in the uploader.
6565

0 commit comments

Comments
 (0)