Clarify why `test_logging_in_ParallelTasks` fails on Windows

This commit is contained in:
Adam Turner
2023-08-12 04:24:09 +01:00
parent 1ea5a434b3
commit c19f0ac8e9

View File

@@ -308,7 +308,8 @@ def test_colored_logs(app, status, warning):
assert colorize('red', 'message8') in status.getvalue()
@pytest.mark.xfail(os.name != 'posix', reason="Not working on windows")
@pytest.mark.xfail(os.name != 'posix',
reason="Parallel mode does not work on Windows")
def test_logging_in_ParallelTasks(app, status, warning):
logging.setup(app, status, warning)
logger = logging.getLogger(__name__)