Skip to content

Commit

Permalink
Merged from develop (#3244)
Browse files Browse the repository at this point in the history
* 20250110084643 Deleted all files in the main branch in anticipation of merging develop-postgres into main cleanly

* 20250110084645 Merge develop-postgres into main
  • Loading branch information
palisadoes authored Jan 10, 2025
1 parent ba4d344 commit b3f21a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/scripts/code_coverage_disable_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ def has_code_coverage_disable(file_path):
otherwise.
"""
code_coverage_disable_pattern = re.compile(
r"""//?\s*istanbul\s+ignore(?:\s+(?:next|-line))?[^\n]*|
/\*\s*istanbul\s+ignore\s+(?:next|-line)\s*\*/""",
r"/\*\s*istanbul\s+ignore.*?\*/|//?\s*istanbul\s+ignore(?:\s+(?:next|-line))?[^\n]*",
re.IGNORECASE,
)


try:
with open(file_path, "r", encoding="utf-8") as file:
content = file.read()
Expand Down

0 comments on commit b3f21a5

Please sign in to comment.