Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[all]
python -m pip install . --group=tests

- name: Run tests
run: pytest -ra --cov
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
uses: actions/checkout@v4
- name: Install dependencies
run: |
pip install sphinx furo myst-parser
python -m pip install --upgrade pip
python -m pip install . --group=docs
- name: Sphinx APIDoc
run: |
sphinx-apidoc -f -o docs/source/ .
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,17 @@ dependencies = [
"requests",
]

[project.optional-dependencies]
all = [
"tika[tests]",
]
[dependency-groups]
tests = [
"memory-profiler",
"pytest-benchmark",
"pytest-cov",
]
docs = [
"furo>=2025.12.19",
"myst-parser>=5.0",
"sphinx>=9.1",
]

[project.urls]
homepage = "http://github.com/chrismattmann/tika-python"
Expand Down
Loading