Skip to content

Commit c19ef3e

Browse files
authored
Fix CI builds (#45)
1 parent 1ebb7d7 commit c19ef3e

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

.github/workflows/pytest-builds.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,25 +27,17 @@ jobs:
2727
run: |
2828
python -m pip install -U pip
2929
python -m pip install .
30-
python -m pip install pytest coverage pytest-cov
3130
python -m pip install git+https://github.com/pydicom/pylibjpeg-data
31+
python -m pip install pytest coverage pytest-cov
3232
3333
- name: Run pytest
3434
run: |
35-
pytest --cov openjpeg --ignore=openjpeg/src/openjpeg
36-
37-
- name: Install pydicom release and rerun pytest
38-
run: |
39-
pip install pydicom
4035
pytest --cov pylibjpeg
4136
42-
- name: Install -libjpeg plugin rerun pytest
37+
- name: Install -libjpeg and -openjpeg plugins and rerun pytest
4338
run: |
39+
pip install pydicom
4440
pip install git+https://github.com/pydicom/pylibjpeg-libjpeg
45-
pytest --cov pylibjpeg
46-
47-
- name: Install -openjpeg plugin rerun pytest
48-
run: |
4941
pip install git+https://github.com/pydicom/pylibjpeg-openjpeg
5042
pytest --cov pylibjpeg
5143

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ plugins come in. To support a given JPEG format or DICOM Transfer Syntax
3030
you first have to install the corresponding package:
3131

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

3838
#### DICOM Transfer Syntax
3939

0 commit comments

Comments
 (0)