mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
12 lines
289 B
Bash
Executable File
12 lines
289 B
Bash
Executable File
#!/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
|