Skip to content

Commit 147bda4

Browse files
committed
output from libheif's info in a separate step
1 parent 4071ad4 commit 147bda4

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/test-src-build-macos.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,8 @@ jobs:
4040
- name: Installing Pillow-Heif
4141
run: python3 -m pip -v install ".[dev]"
4242

43+
- name: LibHeif info
44+
run: python3 -c "import pillow_heif; print(pillow_heif.libheif_info())"
45+
4346
- name: Perform tests
44-
run: python3 -m pytest -s
47+
run: python3 -m pytest -rs

.github/workflows/test-src-build-windows.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,8 @@ jobs:
6363
cp ${{ env.MSYS2_PREFIX }}/bin/libgcc_s_seh-1.dll $site_packages/
6464
cp ${{ env.MSYS2_PREFIX }}/bin/libstdc++-6.dll $site_packages/
6565
66+
- name: LibHeif info
67+
run: python -c "import pillow_heif; print(pillow_heif.libheif_info())"
68+
6669
- name: Perform tests
67-
run: python -m pytest -s
70+
run: python -m pytest -rs

0 commit comments

Comments
 (0)