Source code for steps.api.utils.result_formatter

import allure

from .context import Context

[docs] SECRET_DICT = {"token": "xxxxxxxxxx", "email": "xxxxx@xxxxx.xxx", "password": "xxxxxxxxxx"}
[docs] SWAGGER_KEY_MAPPING = { "jobs": "Job", "users": "User", "auth": "Auth", "platforms": "Platform" }
[docs] def log_allure(title: str, text: str) -> None: allure.attach(str(text), title, allure.attachment_type.TEXT)