You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> See all the environment variable for other CI providers [here](https://github.com/codecov/codecov-python/blob/master/codecov/__init__.py#L260-L430). Note the `-e TOXENV` is used to distinquish builds in Codecov UI [example](https://codecov.io/gh/pyca/cryptography?ref=99c45f19be196cb45bf8de8ea105fcb4619ab504&build=7312.1).
28
+
29
+
## Private repositories
30
+
Please provide your private repository token (found at Codecov) to upload reports.
31
+
32
+
```
33
+
export CODECOV_TOKEN=:token
34
+
codecov
35
+
# or
36
+
codecov -t :token
37
+
```
38
+
39
+
# Some example CI providers
40
+
41
+
### [](https://travis-ci.org) Travis CI
19
42
> Append to your `.travis.yml`
20
43
21
44
```yml
@@ -25,29 +48,18 @@ after_success:
25
48
codecov
26
49
```
27
50
28
-
> ### Start testing with [Travis](https://travis-ci.org/)
0 commit comments