From 386e08ed6406bb57a8f7620b1fef6c57c11006d6 Mon Sep 17 00:00:00 2001 From: Giles Odigwe Date: Tue, 28 Apr 2026 16:48:35 -0700 Subject: [PATCH] Fix E501 line-too-long in azurefunctions parallel test skip reasons Wrap skip reason strings to stay within 120 char line limit. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../tests/integration_tests/test_11_workflow_parallel.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/packages/azurefunctions/tests/integration_tests/test_11_workflow_parallel.py b/python/packages/azurefunctions/tests/integration_tests/test_11_workflow_parallel.py index 57e86dfdf7..65a96678a1 100644 --- a/python/packages/azurefunctions/tests/integration_tests/test_11_workflow_parallel.py +++ b/python/packages/azurefunctions/tests/integration_tests/test_11_workflow_parallel.py @@ -42,7 +42,7 @@ class TestWorkflowParallel: self.base_url = base_url self.helper = sample_helper - @pytest.mark.skip(reason="xdist distributes module tests across workers, each spawning a func process - needs loadscope or xdist_group") + @pytest.mark.skip(reason="xdist distributes module tests across workers, each spawning a func process") def test_parallel_workflow_document_analysis(self) -> None: """Test parallel workflow with a standard document.""" payload = { @@ -71,7 +71,7 @@ class TestWorkflowParallel: assert status["runtimeStatus"] == "Completed" assert "output" in status - @pytest.mark.skip(reason="xdist distributes module tests across workers, each spawning a func process - needs loadscope or xdist_group") + @pytest.mark.skip(reason="xdist distributes module tests across workers, each spawning a func process") def test_parallel_workflow_short_document(self) -> None: """Test parallel workflow with a short document.""" payload = { @@ -91,7 +91,7 @@ class TestWorkflowParallel: assert status["runtimeStatus"] == "Completed" assert "output" in status - @pytest.mark.skip(reason="xdist distributes module tests across workers, each spawning a func process - needs loadscope or xdist_group") + @pytest.mark.skip(reason="xdist distributes module tests across workers, each spawning a func process") def test_parallel_workflow_technical_document(self) -> None: """Test parallel workflow with a technical document.""" payload = { @@ -115,7 +115,7 @@ class TestWorkflowParallel: status = self.helper.wait_for_orchestration_with_output(data["statusQueryGetUri"], max_wait=300) assert status["runtimeStatus"] == "Completed" - @pytest.mark.skip(reason="xdist distributes module tests across workers, each spawning a func process - needs loadscope or xdist_group") + @pytest.mark.skip(reason="xdist distributes module tests across workers, each spawning a func process") def test_workflow_status_endpoint(self) -> None: """Test that the workflow status endpoint works correctly.""" payload = {