[#100] Make special test distinct

This commit is contained in:
Andrey Berezin 2023-10-05 19:05:34 +03:00
parent b01fff85f6
commit 38d1bdbf83
2 changed files with 3 additions and 2 deletions

View file

@ -1,8 +1,8 @@
[tool.isort] [tool.isort]
profile = "black" profile = "black"
src_paths = ["pytest_tests"] src_paths = ["pytest_tests"]
line_length = 100 line_length = 120
[tool.black] [tool.black]
line-length = 100 line-length = 120
target-version = ["py310"] target-version = ["py310"]

View file

@ -8,6 +8,7 @@ from frostfs_testlib.testing.cluster_test_base import ClusterTestBase
class TestLogs(ClusterTestBase): class TestLogs(ClusterTestBase):
@allure.title("Check logs from frostfs-testcases with marks '{request.config.option.markexpr}'")
@pytest.mark.logs_after_session @pytest.mark.logs_after_session
@pytest.mark.no_healthcheck @pytest.mark.no_healthcheck
def test_logs_after_session(self, temp_directory: str, session_start_time: datetime): def test_logs_after_session(self, temp_directory: str, session_start_time: datetime):