Metadata-Version: 2.1
Name: pytest-lineno
Version: 0.0.1
Summary: A pytest plugin to show the line numbers of test functions
Home-page: UNKNOWN
Author: harupy
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: pytest
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: wheel ; extra == 'dev'

# pytest-lineno

A pytest plugin to show the line numbers of test functions.

## Installation

```sh
pip install pytest-lineo
```

## Usage

```sh
pytest --show-lineno --verbose
```

The output should look like:

```sh
tests/test_file.py:0::test_func PASSED               [ 50%]
tests/test_file.py:5::TestClass::test_method PASSED  [100%]
                # ^^^
                # By clicking `tests/test_file.py:5`,
                # you can jump to `TestClass.test_method`
```


