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")