commit
fdf1102148
2 changed files with 4 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in a new issue