Skip to content

Commit

Permalink
docs: adding README
Browse files Browse the repository at this point in the history
  • Loading branch information
chaychoong committed May 5, 2021
1 parent c2ad259 commit ee53833
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions README.md
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 removed README.rst
Empty file.

0 comments on commit ee53833

Please sign in to comment.