diff --git a/test/e2e/configs/testpath.py b/test/e2e/configs/testpath.py index 6bddf1f565..ae56ab46e8 100644 --- a/test/e2e/configs/testpath.py +++ b/test/e2e/configs/testpath.py @@ -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' diff --git a/test/e2e/fixtures/aut.py b/test/e2e/fixtures/aut.py index 5ad4871d02..e8877f706e 100644 --- a/test/e2e/fixtures/aut.py +++ b/test/e2e/fixtures/aut.py @@ -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