-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2bfdc71
commit 4663d47
Showing
10 changed files
with
1,678 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
|
||
[submodule "lib/openjpeg"] | ||
path = lib/openjpeg | ||
url = https://github.com/uclouvain/openjpeg |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Unit tests for pylibjpeg-openjpeg | ||
|
||
Dependencies | ||
------------ | ||
|
||
Required | ||
........ | ||
[pytest](https://docs.pytest.org/) | ||
[pylibjpeg-data](https://github.com/pydicom/pylibjpeg-data) | ||
|
||
Optional | ||
........ | ||
[pylibjpeg](https://github.com/pydicom/pylibjpeg) | ||
[pydicom](https://github.com/pydicom/pydicom) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import sys | ||
|
||
# Add the testing data to openjpeg (if available) | ||
try: | ||
import ljdata as _data | ||
globals()['data'] = _data | ||
# Add to cache - needed for pytest | ||
sys.modules['openjpeg.data'] = _data | ||
except ImportError: | ||
pass |
Oops, something went wrong.