Metadata-Version: 2.1
Name: coverage-fixpaths
Version: 1.0.1
Summary: A small CLI tool that automatically fixes paths in Cobertura coverage reports
Home-page: https://github.com/omegacen/coverage-fixpaths
Author: Teake Nutma
License: UNKNOWN
Description: # coverage-fixpaths
        
        A small CLI tool that automatically fixes paths in Cobertura coverage reports.
        
        ## Usage
        
        ```
        $ coverage-fixpaths --source /path/to/source/files coverage.xml
        ```
        
        This tries to match the filenames in `coverage.xml` to the actual files in `/path/to/source/files`.
        Any common prefix in the coverage report is replaced with a subdirectory of `/path/to/source/files`
        that best matches the file structure in `coverage.xml`. Files that do not exist in the source directory
        are removed from the coverage report.
        
        The option `--source` defaults to `.` (i.e. the current working directory).
        
        
        ## Installation
        
        ```
        pip install coverage-fixpaths
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
