Pillow/depends/install_extra_test_images.sh
2016-11-22 07:19:58 -08:00

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