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 764f252 commit 0a84a3fCopy full SHA for 0a84a3f
.github/workflows/tests.yml
@@ -112,7 +112,7 @@ jobs:
112
text = Path("./warnings.txt").read_text().strip()
113
expected_warning_patterns = [r"kitchen\-sink", r"urllib/parse\.py", r"Glyph 10024 .*? missing from current font"]
114
print("\n=== Sphinx Warnings ===\n\n" + text) # Print just for reference so we can look at the logs
115
- unexpected = [l for l in text.splitlines() if not any(re.search(p, ii) for p in expected_warning_patterns)]
+ unexpected = [l for l in text.splitlines() if not any(re.search(p, l) for p in expected_warning_patterns)]
116
assert len(unexpected) == 0, unexpected
117
118
- name: Audit with Lighthouse
0 commit comments