File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33set -e
44
5- python3 -m coverage erase
65make clean
76make install-coverage
Original file line number Diff line number Diff line change @@ -24,14 +24,7 @@ sudo apt-get -qq install libfreetype6-dev liblcms2-dev libtiff-dev python3-tk\
2424
2525python3 -m pip install --upgrade pip
2626python3 -m pip install --upgrade wheel
27- python3 -m pip install coverage
28- python3 -m pip install defusedxml
2927python3 -m pip install ipython
30- python3 -m pip install olefile
31- python3 -m pip install -U pytest
32- python3 -m pip install -U pytest-cov
33- python3 -m pip install -U pytest-timeout
34- python3 -m pip install pyroma
3528# optional test dependencies, only install if there's a binary package.
3629python3 -m pip install --only-binary=:all: numpy || true
3730python3 -m pip install --only-binary=:all: pyarrow || true
Original file line number Diff line number Diff line change 7878 pushd depends && ./install_extra_test_images.sh && popd
7979
8080 - name : Build Pillow
81- run : CFLAGS="-coverage" python3 -m pip install .
81+ run : CFLAGS="-coverage" python3 -m pip install .[tests]
8282
8383 - name : Test Pillow
8484 run : |
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ install:
6262
6363.PHONY : install-coverage
6464install-coverage :
65- CFLAGS=" -coverage -Werror=implicit-function-declaration" python3 -m pip -v install .
65+ CFLAGS=" -coverage -Werror=implicit-function-declaration" python3 -m pip -v install .[tests]
6666 python3 selftest.py
6767
6868.PHONY : debug
You can’t perform that action at this time.
0 commit comments