Fix remote tests.

This commit is contained in:
Adam Fourney
2024-11-13 14:37:47 -08:00
parent fc3349185c
commit 1787b83d7d

View File

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