We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44153cd commit 0ace858Copy full SHA for 0ace858
tests/test_core.py
@@ -523,6 +523,13 @@ def test_generate_output_content_splitting_very_small_limit(mock_get_tree: Magic
523
# The splitting logic works per chunk, so raw_content (8 words) + closing_tag (1 word) = 9 words total
524
# should fit in one segment when they're placed together
525
526
+ # Debug: Let's see what segments actually look like in CI
527
+ print(f"\nDEBUG: Generated {len(segments)} segments:")
528
+ for i, segment in enumerate(segments):
529
+ print(f"Segment {i+1} ({count_words_for_test(segment)} words):")
530
+ print(f"'{segment}'")
531
+ print("---")
532
+
533
found_raw_content_segment = False
534
for segment in segments:
535
if raw_file1_content in segment:
0 commit comments