mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-28 10:56:18 +03:00
9 lines
191 B
Bash
9 lines
191 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
python3 -m coverage erase
|
|
make clean
|
|
CFLAGS="-coverage -Werror=implicit-function-declaration" python3 -m pip install -v --global-option="build_ext" .
|
|
python3 selftest.py
|