mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
7fd3e9977e
Cygwin is trying to use the highest-available Python version. One of the Python packages has scripts in /usr/bin that should be in the python39- subpackage.
8 lines
154 B
Bash
Executable File
8 lines
154 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
python3$1 -c "from PIL import Image"
|
|
|
|
python3$1 -bb -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term Tests $REVERSE
|