• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

tired-labs / tiredize / 22610705118
99%

Build:
DEFAULT BRANCH: main
Ran 03 Mar 2026 06:08AM UTC
Jobs 1
Files 69
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

03 Mar 2026 06:08AM UTC coverage: 95.213% (+0.1%) from 95.064%
22610705118

push

github

web-flow
Issue/parser greedy regex (#21)

* Fix 5 greedy regex bugs across markdown parser

1. InlineImage/InlineLink URL pattern: \S+ -> [^\s)]+ to stop at
   closing paren instead of consuming adjacent syntax.
2. Table rows: require | in each data row per GFM, preventing
   non-table lines from being consumed.
3. Start-of-line anchor: replace (?<![^|\n]) with (?:(?<=\n)|(?:^))
   in CodeBlock, Header, QuoteBlock, ReferenceDefinition to stop
   treating | as valid start-of-line.
4. BareLink: add ../ as explicit alternative before ./ to prevent
   false partial match of ./ inside ../ paths.
5. ImageReference: remove dead lookbehind (?<!(\])) that always
   passed because ! is never ].

* Update issue files and parser spec for greedy regex fixes

Checks off all acceptance criteria. Documents start-of-line anchor,
URL pattern, and BareLink path matching in the parser spec. Updates
gfm-parity issue with balanced parentheses acceptance criterion.

* Fix stale comments and document all regex patterns in parser spec

Update stale comments in test_header.py and test_reference.py to
reflect the new start-of-line anchor pattern. Update anchor pattern
references in quoteblock-over-sanitization.md issue. Add comprehensive
Pattern Reference section to the parser specification documenting all
13 RE_* regex constants with component descriptions, named capture
groups, and design rationale.

* Fix spec claim about VERBOSE lookbehinds and misleading regex comments

Correct inaccurate specification claim that negative lookbehinds
cannot be used in re.VERBOSE mode. The actual issue was the negated
character class including pipe. Fix misleading inline comments in
LinkReference and ImageReference regexes that said "Capture the URL"
for reference label groups.

* Mark parser-greedy-regex issue as completed

* Fix IndexError on pipe-only table data rows

Guard the leading-pipe strip in row parsing against empty string
after trailing-pipe strip. A data row containing only | no longer... (continued)

15 of 15 new or added lines in 7 files covered. (100.0%)

4634 of 4867 relevant lines covered (95.21%)

1.9 hits per line

Jobs
ID Job ID Ran Files Coverage
1 22610705118.1 03 Mar 2026 06:08AM UTC 138
95.21
GitHub Action Run
Source Files on build 22610705118
  • Tree
  • List 69
  • Changed 14
  • Source Changed 14
  • Coverage Changed 8
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • Github Actions Build #22610705118
  • a756f3ab on github
  • Prev Build on main (#22609056015)
  • Next Build on main (#22621178222)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc