13 lines
509 B
Python
13 lines
509 B
Python
import pytest
|
|
from ragger.conftest import configuration
|
|
from ragger.backend import BackendInterface
|
|
from app.client import EthereumClient
|
|
|
|
# This final fixture will return the properly configured app client, to be used in tests
|
|
@pytest.fixture
|
|
def app_client(backend: BackendInterface, golden_run: bool) -> EthereumClient:
|
|
return EthereumClient(backend, golden_run)
|
|
|
|
# Pull all features from the base ragger conftest using the overridden configuration
|
|
pytest_plugins = ("ragger.conftest.base_conftest", )
|