mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
12 lines
289 B
Bash
12 lines
289 B
Bash
|
#!/bin/bash
|
||
|
# install extra test images
|
||
|
|
||
|
if [ ! -f test_images.tar.gz ]; then
|
||
|
wget -O 'test_images.tar.gz' 'https://github.com/python-pillow/pillow-depends/blob/master/test_images.tar.gz?raw=true'
|
||
|
fi
|
||
|
|
||
|
rm -r test_images
|
||
|
tar -xvzf test_images.tar.gz
|
||
|
|
||
|
cp -r test_images/* ../Tests/images
|