Fix CLI tests.... have them install [all]
This commit is contained in:
parent
10da043ec6
commit
b9487b6b6d
2 changed files with 10 additions and 2 deletions
|
|
@ -29,7 +29,6 @@ dependencies = [
|
|||
"mammoth",
|
||||
"markdownify~=0.14.1",
|
||||
"numpy",
|
||||
"python-pptx",
|
||||
"pandas",
|
||||
"openpyxl",
|
||||
"xlrd",
|
||||
|
|
@ -46,6 +45,10 @@ dependencies = [
|
|||
"azure-identity"
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
all = ["python-pptx"]
|
||||
pptx = ["python-pptx"]
|
||||
|
||||
[project.urls]
|
||||
Documentation = "https://github.com/microsoft/markitdown#readme"
|
||||
Issues = "https://github.com/microsoft/markitdown/issues"
|
||||
|
|
@ -57,6 +60,12 @@ path = "src/markitdown/__about__.py"
|
|||
[project.scripts]
|
||||
markitdown = "markitdown.__main__:main"
|
||||
|
||||
[tool.hatch.envs.default]
|
||||
features = ["all"]
|
||||
|
||||
[tool.hatch.envs.hatch-test]
|
||||
features = ["all"]
|
||||
|
||||
[tool.hatch.envs.types]
|
||||
extra-dependencies = [
|
||||
"mypy>=1.0.0",
|
||||
|
|
|
|||
|
|
@ -354,7 +354,6 @@ class MarkItDown:
|
|||
try:
|
||||
res = converter.convert(local_path, **_kwargs)
|
||||
except Exception:
|
||||
print("HERE!")
|
||||
failed_attempts.append(
|
||||
FailedConversionAttempt(
|
||||
converter=converter, exc_info=sys.exc_info()
|
||||
|
|
|
|||
Loading…
Reference in a new issue