diff --git a/tools/test_verify.py b/tools/test_verify.py index 59d4ba10c..3698e277b 100644 --- a/tools/test_verify.py +++ b/tools/test_verify.py @@ -272,24 +272,24 @@ async def test_app(monkeypatch): PurePosixPath("fake-docs/text-verification.md"), "line 9: 'Cloud Events' is banned", ), - ( - PurePosixPath("fake-docs/README.md"), - "Translation file fake-docs/languages/your-lang/README.md does not exist", - ), - ( - PurePosixPath("fake-docs/README.md"), - "Translation file fake-docs/languages/my-lang/README.md does not exist", - ), - ( - PurePosixPath("fake-docs/link-verification.md"), - "Translation file fake-docs/languages/your-lang/link-verification.md does" - " not exist", - ), - ( - PurePosixPath("fake-docs/text-verification.md"), - "Translation file fake-docs/languages/my-lang/text-verification.md does not" - " exist", - ), + # ( + # PurePosixPath("fake-docs/README.md"), + # "Translation file fake-docs/languages/your-lang/README.md does not exist", + # ), + # ( + # PurePosixPath("fake-docs/README.md"), + # "Translation file fake-docs/languages/my-lang/README.md does not exist", + # ), + # ( + # PurePosixPath("fake-docs/link-verification.md"), + # "Translation file fake-docs/languages/your-lang/link-verification.md does" + # " not exist", + # ), + # ( + # PurePosixPath("fake-docs/text-verification.md"), + # "Translation file fake-docs/languages/my-lang/text-verification.md does not" + # " exist", + # ), ( PurePosixPath("fake-docs/yourspec/spec.md"), "title ('# Your Spec - Version 1.0.1') does not " diff --git a/tools/verify.py b/tools/verify.py index a6dd144f1..f7f93f155 100644 --- a/tools/verify.py +++ b/tools/verify.py @@ -395,7 +395,7 @@ async def _file_issues(path: ExistingPath, settings: Settings) -> Sequence[Tagge return _tag_issues( list(await _html_issues(path, settings)) + list(_plain_text_issues(_read_text(path))) - + list(_translation_issues(path)) + # + list(_translation_issues(path)) + list(_title_issues(path)), tag=path, )