chore: do not remove logs after run
This commit is contained in:
parent
4dc232e9d0
commit
40530954db
|
@ -27,7 +27,7 @@ assert SQUISH_DIR_RAW is not None
|
|||
SQUISH_DIR = SystemPath(SQUISH_DIR_RAW)
|
||||
|
||||
# Status Application
|
||||
STATUS_DATA: SystemPath = RUN / 'status'
|
||||
STATUS_DATA: SystemPath = RUN
|
||||
|
||||
# Sets log level, can be one of: "ERROR", "WARN", "INFO", "DEBUG", "TRACE". "INFO"
|
||||
LOG_LEVEL = 'DEBUG'
|
||||
|
|
|
@ -26,7 +26,6 @@ def application_logs():
|
|||
for app_data in configs.testpath.STATUS_DATA.iterdir():
|
||||
for log in (app_data / 'logs').iterdir():
|
||||
allure.attach.file(log, name=str(log.name), attachment_type=allure.attachment_type.TEXT)
|
||||
log.unlink()
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
|
Loading…
Reference in New Issue