Metadata-Version: 2.1
Name: coverage-diff
Version: 0.0.3
Summary: Show/check coverage only for changed files (between any git branches)
Home-page: https://github.com/pypa/sampleproject
Author: strayge
Author-email: strayge@gmail.com
License: UNKNOWN
Description: ### Coverage-diff
        
        Show / check coverage only for changed files
        
        ### Example
        
        Show coverage for all changed files (except deleted & renamed) 
        between current branch and master with numbers of missing lines.
        
        ```sh
        coverage-diff HEAD master --show-missing
        ```
        
        ### Options
        
        ```
        usage: main.py [-h] [--diff-filter DIFFS] [--include-regexp REGEXP]
                       [--full-branches BRANCH] [--show-missing] [--show-missing-full]
                       [branch1] [branch2]
        
        Show coverage only for changed files
        
        positional arguments:
          branch1               first branch for git diff (default: HEAD)
          branch2               second branch for git diff (default: origin/master)
        
        optional arguments:
          -h, --help            show this help message and exit
          --diff-filter DIFFS   diff types for include files for coverage (more info
                                at git diff's --diff-filter option) (default: dr)
          --include-regexp REGEXP
                                filter changed files by regexp (default: \.py$)
          --full-branches BRANCH
                                show full coverage for specified branches (delimited
                                by comma) (default: master)
          --show-missing, -m    show missed lines for changed files (default: False)
          --show-missing-full, -mf
                                show missed lines for --full-branches (default: False)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
