Skip to content

Commit

Permalink
add test for invalid code block syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tybug committed Feb 24, 2025
1 parent 6112433 commit 751f06b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions whole_repo_tests/test_rst_is_valid.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
# obtain one at https://mozilla.org/MPL/2.0/.

import os
import re
from pathlib import Path

import hypothesistooling as tools
from hypothesistooling.projects import hypothesispython as hp
Expand All @@ -32,6 +34,17 @@ def test_passes_rst_lint():
pip_tool("rst-lint", *(f for f in ALL_RST if not is_sphinx(f)))


def test_rst_code_blocks():
# has bitten us before https://github.com/HypothesisWorks/hypothesis/pull/4273
pattern = re.compile(r"^\.\.\s+code-block:\s+", re.MULTILINE)
for f in ALL_RST:
matches = pattern.search(Path(f).read_text())
assert not matches, (
f"incorrect code block syntax in {f}. Use `.. code-block::` "
"instead of `.. code-block:`"
)


def disabled_test_passes_flake8():
# TODO: get these whitespace checks without flake8?
pip_tool("flake8", "--select=W191,W291,W292,W293,W391", *ALL_RST)

0 comments on commit 751f06b

Please sign in to comment.