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

Commit 5b9d539

Browse files
author
Steve Peak
authored
Merge pull request #99 from CJ-Wright/readme
ENH: add conda to readme
2 parents 7ab5e93 + 6a85ff9 commit 5b9d539

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ Find coverage reports for all the [languages below](#languages), gather them and
1616
```sh
1717
pip install --user codecov && codecov -t the-repository-upload-token
1818
```
19+
or
20+
```sh
21+
conda install -c conda-forge codecov && codecov -t the-repository-upload-token
22+
```
1923
> `--user` argument not needed for Python projects. [See example here](https://github.com/codecov/example-python).
2024
2125
## Languages
@@ -52,6 +56,8 @@ commands = codecov -e TOXENV
5256
# public repository on Travis CI
5357
install:
5458
- pip install --user codecov
59+
# or
60+
- conda install -c conda-forge codecov
5561
after_success:
5662
- codecov
5763
```
@@ -60,6 +66,8 @@ after_success:
6066
# private repository on Travis CI
6167
install:
6268
- pip install --user codecov
69+
# or
70+
- conda install -c conda-forge codecov
6371
after_success:
6472
- codecov -t the-repository-upload-token
6573
```

0 commit comments

Comments
 (0)