Skip to content

Commit

Permalink
list
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Jan 6, 2025
1 parent 3d89ba7 commit bcc8d43
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .ci/after_success.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash

# gather the coverage data
pwd
ls -la
python3 -m pip install coverage
if [[ $MATRIX_DOCKER ]]; then
Expand Down
3 changes: 3 additions & 0 deletions .ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ set -e
python3 -c "from PIL import Image"

python3 -bb -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests/test_image.py $REVERSE

pwd
ls -la
3 changes: 3 additions & 0 deletions .github/workflows/test-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
fail-fast: false
matrix:
docker: [
centos-stream-9-amd64,
ubuntu-22.04-jammy-amd64,
ubuntu-24.04-noble-amd64,
]
Expand Down Expand Up @@ -66,6 +67,8 @@ jobs:
PATH="$PATH:~/.local/bin"
docker start pillow_container
pil_path=`docker exec pillow_container /vpy3/bin/python -c 'import os, PIL;print(os.path.realpath(os.path.dirname(PIL.__file__)))'`
echo "torch"
echo $pil_path
docker stop pillow_container
sudo mkdir -p $pil_path
sudo cp src/PIL/*.py $pil_path
Expand Down

0 comments on commit bcc8d43

Please sign in to comment.