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
14 changes: 3 additions & 11 deletions .github/workflows/pytest-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,17 @@ jobs:
run: |
python -m pip install -U pip
python -m pip install .
python -m pip install pytest coverage pytest-cov
python -m pip install git+https://github.com/pydicom/pylibjpeg-data
python -m pip install pytest coverage pytest-cov

- name: Run pytest
run: |
pytest --cov openjpeg --ignore=openjpeg/src/openjpeg

- name: Install pydicom release and rerun pytest
run: |
pip install pydicom
pytest --cov pylibjpeg

- name: Install -libjpeg plugin rerun pytest
- name: Install -libjpeg and -openjpeg plugins and rerun pytest
run: |
pip install pydicom
pip install git+https://github.com/pydicom/pylibjpeg-libjpeg
pytest --cov pylibjpeg

- name: Install -openjpeg plugin rerun pytest
run: |
pip install git+https://github.com/pydicom/pylibjpeg-openjpeg
pytest --cov pylibjpeg

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ plugins come in. To support a given JPEG format or DICOM Transfer Syntax
you first have to install the corresponding package:

#### JPEG Format
| Format | Decode? | Encode? | Plugin | Based on | Included? |
| Format | Decode? | Encode? | Plugin | Based on |
|---|------|---|---|---|---|
| JPEG, JPEG-LS and JPEG XT | Yes | No | [pylibjpeg-libjpeg][1] | [libjpeg][2] | No |
| JPEG 2000 | Yes | No | [pylibjpeg-openjpeg][3] | [openjpeg][4] | Yes |
| JPEG, JPEG-LS and JPEG XT | Yes | No | [pylibjpeg-libjpeg][1] | [libjpeg][2] |
| JPEG 2000 | Yes | No | [pylibjpeg-openjpeg][3] | [openjpeg][4] |

#### DICOM Transfer Syntax

Expand Down