From c764a2e02257a5585300decb3a6ed4a7810001db Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Fri, 15 Dec 2023 05:15:49 -0800 Subject: [PATCH] clean up --- conftest.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/conftest.py b/conftest.py index 5358dd9053..d4577f8b51 100644 --- a/conftest.py +++ b/conftest.py @@ -67,12 +67,8 @@ def pytest_collection_modifyitems(config, items): @pytest.hookimpl(trylast=True) def pytest_configure(config): - config_line = ( - "xdist_group_class_property: group tests by a property of the class that contains them" - ) + config_line = "xdist_group_class_property: group tests by a property of the class that contains them" config.addinivalue_line("markers", config_line) - config_line = ( - "nocapture: don't capture" - ) + config_line = "nocapture: don't capture test output" config.addinivalue_line("markers", config_line)