mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-15 06:07:33 +03:00
8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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 $REVERSE
|