Skip to content
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 13, 2025
commit 71dedd468d6b487d5aadcc7c2a3e926f375af6f4
4 changes: 3 additions & 1 deletion tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,9 @@ def test_conversion_from_non_plain_text_file(self):
self.assertEqualExceptForNewlineEnd(expected, received)

# skip in ci
@unittest.skipIf(os.environ.get("CI") == "true", "Skipping PDF conversion test in CI environment")
@unittest.skipIf(
os.environ.get("CI") == "true", "Skipping PDF conversion test in CI environment"
)
def test_pdf_conversion(self):
with closed_tempfile(".pdf") as file_name:
ret = pypandoc.convert_text(
Expand Down