pytest-informative-node 1.0.0

Creator: bradpython12

Last updated:

Add to Cart

Description:

pytestinformativenode 1.0.0

Welcome to pytest-informative-node




Display more node information.
Requirements

pytest >= 3.10.0
python >= 3.6

Not compatible with Python2.x
How to install
$ pip install pytest-informative-node
How to use
# pytest.ini
[pytest]
[informative_node_id]
enable : true
delimiter : @

write docstring with leading delimiter you defined in pytest.ini [informative_node_id] section as node name.
class TestClass:
"""@you node id"""

def test_func():
"""@you node id"""


Test file and Test Package is also supported, just write docstring in the top of file and __init__.py respectively.

Options

Notice! [pytest]section must be included.
Notice! All options bellow must be under [informative_node_id] section in pytest.ini.


enable : [true / false] default is false.
delimiter : the delimiter to extract node_id in docstring, default is @.

Example
# Test file structure
scenario
|
|__functionality
|__ __init__.py
| |# content of __init__.py
| |"""@LoginSection"""
| #\---------------------
|
|__ test_one.py
|# content of __init__.py
| """@TestFile"""
| import pytest
| class TestClass:
| """@TestGroup"""
|
| @pytest.mark.parametrize('n', [1, 2], ids=['first', 'second'])
| def test_demo(self, n):
| """@DemoTest"""
| assert n == 1
#\-----------------------

# Test report structure
✕LoginSection
|
|__ ✕TestFile
|
|__ ✕TestGroup
|
|__ ✕Demo Test
|__ ✓first
|__ ✕second


Notice: Duplicate custom node id under same test level is not allowed.
e.g.

def test_a():
"""@ login"""
def test_b():
"""@ login""" # <-----XXXXXX!

Contributing
Contributions are very welcome. Tests can be run with tox, please ensure
the coverage at least stays the same before you submit a pull request.
License
Distributed under the terms of the MIT license, "pytest-informative-node" is free and open source software
Known Issue

If you test with Pycharm, you cannot navigate back to source test file from Test Runner tab.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.