Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.4 KB

README.md

File metadata and controls

36 lines (30 loc) · 1.4 KB

coveralls-uploader ⭐

GitHub Coverage Status

coveralls-uploader is a dotnet tool that allows you to parse a lcov code coverage report and upload to Coveralls.io 🚀

Installation

Global tool

dotnet tool install --global coveralls-uploader --version 0.6.0

Local tool

dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local coveralls-uploader --version 0.6.0

Usage

Use coveralls-uploader [options] to parse and upload the report.

Options:

  -i, --input <input> (REQUIRED)  File path to the code coverage report 
  -t, --token <token>             The repository token 
  -s, --source                    Include source file content in the request 
  -v, --verbose                   Show verbose output 
  --version                       Show version information
  -?, -h, --help                  Show help and usage information 

TODOs 🗒️

  • Add Decorator to fill environment variables with COVERALLS_* variables
  • Add support for ReportGenerator.Core
  • Add new CI/CD tools support
  • Add support for YAML configuration file for repository token.
  • Add more logs for the verbose option.