From 1787b83d7d69073001694b665c34bb2f6173660a Mon Sep 17 00:00:00 2001 From: Adam Fourney Date: Wed, 13 Nov 2024 14:37:47 -0800 Subject: [PATCH] Fix remote tests. --- tests/test_markitdown.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_markitdown.py b/tests/test_markitdown.py index 449525c..94fd886 100644 --- a/tests/test_markitdown.py +++ b/tests/test_markitdown.py @@ -8,7 +8,9 @@ import requests from markitdown import MarkItDown -skip_remote = os.environ.get("GITHUB_ACTIONS") # Don't run these tests in CI +skip_remote = ( + True if os.environ.get("GITHUB_ACTIONS") else False +) # Don't run these tests in CI skip_exiftool = shutil.which("exiftool") is None TEST_FILES_DIR = os.path.join(os.path.dirname(__file__), "test_files")