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/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install .[test]
pip install . --group test
pip install ${{ matrix.dependencies }}
- name: Lint with flake8
run: |
Expand Down
4 changes: 2 additions & 2 deletions docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Install requirements:

.. code-block:: none

pip install .[test]
pip install . --group test

Run tests (including checks for PEP8 compliance):

Expand All @@ -79,7 +79,7 @@ Install requirements:

.. code-block:: none

pip install .[docs]
pip install . --group docs

Build documentation in *HTML* format:

Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ libjpeg = [
"pylibjpeg-openjpeg>=2.0.0",
"pylibjpeg>=2.0",
]

[dependency-groups]
test = [
"mypy==1.15.0",
"pytest==8.3.5",
Expand Down