-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2ad259
commit ee53833
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# coveragepy-lcov | ||
|
||
This package provides a simple CLI for converting .coverage files to the LCOV format. | ||
|
||
# Usage | ||
|
||
```bash | ||
pip install coveragepy-lcov | ||
|
||
# If the .coverage file is in your current working directory | ||
coveragepy-lcov | ||
|
||
# Point to a different .coverage file path | ||
coveragepy-lcov --data_file_path example/.coverage | ||
|
||
# Write the output to a different file path | ||
coveragepy-lcov --output_file_path build/lcov.info | ||
|
||
# Use relative paths in the LCOV output | ||
coveragepy-lcov --relative_path | ||
``` | ||
|
||
# Configuration | ||
|
||
```text | ||
Usage: coveragepy-lcov [OPTIONS] | ||
Options: | ||
--data_file_path TEXT Path to .coverage file | ||
--output_file_path TEXT lcov.info output file path | ||
--config_file TEXT Path to .coveragerc file | ||
--relative_path Use relative path in LCOV output | ||
--preview Preview LCOV output | ||
--help Show this message and exit. | ||
``` |
Empty file.