18 lines
247 B
Python
18 lines
247 B
Python
|
import pytest
|
||
|
|
||
|
pytest_plugins = [
|
||
|
'tests.fixtures.path',
|
||
|
]
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope='session', autouse=True)
|
||
|
def setup_session_scope(
|
||
|
run_dir,
|
||
|
):
|
||
|
yield
|
||
|
|
||
|
|
||
|
def pytest_exception_interact(node):
|
||
|
"""Handles test on fail."""
|
||
|
pass
|