Merge pull request #1 from microsoft/ci_test

Fix the remote tests.
This commit is contained in:
afourney
2024-11-13 14:44:39 -08:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
# Project
# MarkItDown
> This repo has been populated by an initial template to help get you started. Please
> make sure to update the content to build a great experience for community-building.

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