From 9b4c2094a2f22fc55baf4a7da58982aa21ede43e Mon Sep 17 00:00:00 2001 From: Earle Lowe <30607889+emlowe@users.noreply.github.com> Date: Tue, 21 Oct 2025 15:24:45 -0700 Subject: [PATCH 1/3] Skip slow test for FullBlock parser Skip slow test for FullBlock parser due to limited usefulness. --- chia/_tests/util/test_full_block_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/chia/_tests/util/test_full_block_utils.py b/chia/_tests/util/test_full_block_utils.py index 3a3b3ed23970..23ef9975652e 100644 --- a/chia/_tests/util/test_full_block_utils.py +++ b/chia/_tests/util/test_full_block_utils.py @@ -255,6 +255,7 @@ def get_full_blocks() -> Iterator[FullBlock]: @pytest.mark.anyio +@pytest.mark.skip("Very slow test with limited usefulness: was used to ensure the cheap parser for FullBlock matched the regular (slow) one") async def test_parser(): # loop over every combination of Optionals being set and not set # along with random values for the FullBlock fields. Ensure From 46e17aeb63cb8d8e5fbf3a72866af1df1feb79c3 Mon Sep 17 00:00:00 2001 From: Earle Lowe <30607889+emlowe@users.noreply.github.com> Date: Tue, 21 Oct 2025 15:29:43 -0700 Subject: [PATCH 2/3] shorten line --- chia/_tests/util/test_full_block_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chia/_tests/util/test_full_block_utils.py b/chia/_tests/util/test_full_block_utils.py index 23ef9975652e..063f88afd0b8 100644 --- a/chia/_tests/util/test_full_block_utils.py +++ b/chia/_tests/util/test_full_block_utils.py @@ -255,7 +255,7 @@ def get_full_blocks() -> Iterator[FullBlock]: @pytest.mark.anyio -@pytest.mark.skip("Very slow test with limited usefulness: was used to ensure the cheap parser for FullBlock matched the regular (slow) one") +@pytest.mark.skip("Very slow test with limited usefulness: was used to ensure the cheap parser for FullBlock matched the regular one") async def test_parser(): # loop over every combination of Optionals being set and not set # along with random values for the FullBlock fields. Ensure From 04458060454f7e6bac07d1571f63ed3add04921f Mon Sep 17 00:00:00 2001 From: Earle Lowe Date: Tue, 21 Oct 2025 15:33:53 -0700 Subject: [PATCH 3/3] format fix --- chia/_tests/util/test_full_block_utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chia/_tests/util/test_full_block_utils.py b/chia/_tests/util/test_full_block_utils.py index 063f88afd0b8..ac277f259d05 100644 --- a/chia/_tests/util/test_full_block_utils.py +++ b/chia/_tests/util/test_full_block_utils.py @@ -255,7 +255,9 @@ def get_full_blocks() -> Iterator[FullBlock]: @pytest.mark.anyio -@pytest.mark.skip("Very slow test with limited usefulness: was used to ensure the cheap parser for FullBlock matched the regular one") +@pytest.mark.skip( + "Very slow test with limited usefulness: was used to ensure the cheap parser for FullBlock matched the regular one" +) async def test_parser(): # loop over every combination of Optionals being set and not set # along with random values for the FullBlock fields. Ensure