Metadata-Version: 2.1
Name: not-covered-lines
Version: 0.0.1
Summary: Finds a python-thing, like a class, a function or a variable by string and loads it
Home-page: https://github.com/tom-010/not_covered_lines
Author: Thomas Deniffel
Author-email: tdeniffel@gmail.com
License: Apache2
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE

not_covered_lines
=================

This module takes a path to a directory, where previously 
`coverage.py` was executed and thus now has the file `.coverage`
in it, which it reads. It outputs a list of missing lines in 
the form `[(filename, line_number)]`


## Usage Example

See `usage_example.py` as an example:
```
$ python3 usage_example.py example.coverage
```
Note: normally it is just `.coverage` but this file is used for testing 
and as long as it ends with `.coverge` the path is fine

Obviously you want to use this as library, not as script.

