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

Commit 971d761

Browse files
committed
Remove token restrictions
1 parent 066706e commit 971d761

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
Codecov Global Python Uploader ![PyPI](https://img.shields.io/pypi/v/codecov) [![codecov.io](https://codecov.io/github/codecov/codecov-python/coverage.svg?branch=master)](https://codecov.io/github/codecov/codecov-python) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
1+
Codecov Global Python Uploader
2+
[![codecov.io](https://codecov.io/github/codecov/codecov-python/coverage.svg?branch=master)](https://codecov.io/github/codecov/codecov-python)
3+
![PyPI](https://img.shields.io/pypi/v/codecov)
4+
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
25
=======
3-
| [https://codecov.io/][1] | [https://community.codecov.io/][2] | [@codecov][3] | [hello@codecov.io][4] |
4-
| ------------------------ | ---------------------------------- | ------------- | --------------------- |
6+
| [Support][1] | [Documentation][2] | [Community Boards][3] | [Twitter][4] |
7+
| ------------ | ------------------ | --------------------- | ------------ |
58

69
Find coverage reports for all the [languages below](#languages), gather them and submit them to Codecov.
710

@@ -100,10 +103,9 @@ If you're seeing an **HTTP 400 error when uploading reports to S3**, make sure y
100103

101104

102105

103-
[1]: https://codecov.io/
106+
[1]: https://codecov.io/support/
104107
[2]: https://community.codecov.io/
105108
[3]: https://twitter.com/codecov
106-
[4]: mailto:hello@codecov.io
107109

108110
## Copyright
109111

codecov/__init__.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -953,8 +953,6 @@ def main(*argv, **kwargs):
953953
if _slug:
954954
query["slug"] = _slug.groups()[1]
955955

956-
assert query.get("job") or query.get("token"), "Missing repository upload token"
957-
958956
# Processing gcov
959957
# ---------------
960958
if "gcov" in codecov.disable:
@@ -1189,13 +1187,6 @@ def main(*argv, **kwargs):
11891187
"Tip: See all example repositories: https://github.com/codecov?query=example"
11901188
)
11911189

1192-
write("Support channels:", "green")
1193-
write(
1194-
" Email: hello@codecov.io\n"
1195-
" IRC: #codecov\n"
1196-
" Gitter: https://gitter.im/codecov/support\n"
1197-
" Twitter: @codecov\n"
1198-
)
11991190
sys.exit(1 if codecov.required else 0)
12001191

12011192
else:

0 commit comments

Comments
 (0)