mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 15:24:39 +00:00
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
|