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)