current_test fixture allows to retrieve the current test context, that is exposed through the shell environment
5 lines
154 B
Python
5 lines
154 B
Python
def pytest_configure(config):
|
|
# register an additional marker
|
|
config.addinivalue_line(
|
|
"markers", "pytest: test pytest integration"
|
|
)
|