2022-07-19 01:36:37 +08:00
|
|
|
from dataclasses import dataclass
|
|
|
|
from typing import Tuple
|
|
|
|
|
2022-07-26 14:32:05 +08:00
|
|
|
from common.agent_configuration import AgentConfiguration
|
2022-07-19 01:36:37 +08:00
|
|
|
from common.credentials import Credentials
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class TestConfiguration:
|
2022-07-26 22:31:35 +08:00
|
|
|
__test__ = False
|
2022-07-19 01:36:37 +08:00
|
|
|
agent_configuration: AgentConfiguration
|
|
|
|
propagation_credentials: Tuple[Credentials, ...]
|