Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit bf97a8b

Browse files
authored
Update README with accurate links (#294)
* Update README with accurate links * force * format * format * last format
1 parent 6795ee0 commit bf97a8b

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test:
1212
py.test tests/test.py --cov=codecov
1313

1414
format:
15-
black . --check
15+
black . -v -t py38 --check --diff
1616

1717
compare:
1818
hub compare $(shell git tag --sort=refname | tail -1)...master

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Codecov Global Python Uploader
1+
# Codecov Global Python Uploader
2+
23
[![codecov.io](https://codecov.io/github/codecov/codecov-python/coverage.svg?branch=master)](https://codecov.io/github/codecov/codecov-python)
34
![PyPI](https://img.shields.io/pypi/v/codecov)
45
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
@@ -105,13 +106,14 @@ If you're seeing an **HTTP 400 error when uploading reports to S3**, make sure y
105106

106107

107108
[1]: https://codecov.io/support/
108-
[2]: https://community.codecov.io/
109-
[3]: https://twitter.com/codecov
109+
[2]: https://docs.codecov.io/
110+
[3]: https://community.codecov.io/
111+
[4]: https://twitter.com/codecov
110112

111113
## Copyright
112114

113115
> Copyright 2014-2020 codecov
114116

115117

116118
## License
117-
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fcodecov%2Fcodecov-python.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fcodecov%2Fcodecov-python?ref=badge_large)
119+
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fcodecov%2Fcodecov-python.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fcodecov%2Fcodecov-python?ref=badge_large)

tests/test.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def test_send(self):
278278
gzip_worker.decompress(put.call_args[1]["data"])
279279
+ gzip_worker.flush()
280280
)
281-
assert u"tests/test.py".encode("utf-8") in reports
281+
assert "tests/test.py".encode("utf-8") in reports
282282

283283
def test_send_error(self):
284284
with patch("requests.post") as post:
@@ -866,7 +866,9 @@ def test_ci_gitlab(self):
866866
)
867867
def test_ci_github(self):
868868
self.set_env(
869-
HOME="/", CODECOV_TOKEN="token", CODECOV_NAME="name",
869+
HOME="/",
870+
CODECOV_TOKEN="token",
871+
CODECOV_NAME="name",
870872
)
871873
self.fake_report()
872874
res = self.run_cli()

0 commit comments

Comments
 (0)