mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Remove unused Travis CI config
This commit is contained in:
parent
9e3ad5e997
commit
d3702fd614
|
@ -11,9 +11,3 @@ fi
|
||||||
if [[ $TRAVIS ]]; then
|
if [[ $TRAVIS ]]; then
|
||||||
codecov --flags TravisCI
|
codecov --flags TravisCI
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ]; then
|
|
||||||
# Coverage and quality reports on just the latest diff.
|
|
||||||
depends/diffcover-install.sh
|
|
||||||
depends/diffcover-run.sh
|
|
||||||
fi
|
|
||||||
|
|
|
@ -34,10 +34,9 @@ python3 -m pip install test-image-results
|
||||||
# TODO Remove condition when numpy supports 3.10
|
# TODO Remove condition when numpy supports 3.10
|
||||||
if ! [ "$GHA_PYTHON_VERSION" == "3.10-dev" ]; then python3 -m pip install numpy ; fi
|
if ! [ "$GHA_PYTHON_VERSION" == "3.10-dev" ]; then python3 -m pip install numpy ; fi
|
||||||
|
|
||||||
# TODO Remove when 3.8 / 3.9 / PyPy3 includes setuptools 49.3.2+:
|
# TODO Remove when 3.8 / 3.9 includes setuptools 49.3.2+:
|
||||||
if [ "$GHA_PYTHON_VERSION" == "3.8" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi
|
if [ "$GHA_PYTHON_VERSION" == "3.8" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi
|
||||||
if [ "$GHA_PYTHON_VERSION" == "3.9" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi
|
if [ "$GHA_PYTHON_VERSION" == "3.9" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi
|
||||||
if [ "$TRAVIS_PYTHON_VERSION" == "pypy3.6-7.3.1" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi
|
|
||||||
|
|
||||||
# PyQt5 doesn't support PyPy3
|
# PyQt5 doesn't support PyPy3
|
||||||
# Wheel doesn't yet support 3.10
|
# Wheel doesn't yet support 3.10
|
||||||
|
@ -48,9 +47,6 @@ if [[ $GHA_PYTHON_VERSION == 3.* && $GHA_PYTHON_VERSION != "3.10-dev" ]]; then
|
||||||
python3 -m pip install pyqt5
|
python3 -m pip install pyqt5
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# docs only on Python 3.9
|
|
||||||
if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ]; then python3 -m pip install -r requirements.txt ; fi
|
|
||||||
|
|
||||||
# webp
|
# webp
|
||||||
pushd depends && ./install_webp.sh && popd
|
pushd depends && ./install_webp.sh && popd
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,3 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
python -bb -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term Tests
|
python -bb -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term Tests
|
||||||
|
|
||||||
# Docs
|
|
||||||
if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ] && [ "$TRAVIS_CPU_ARCH" == "amd64" ]; then
|
|
||||||
make doccheck
|
|
||||||
fi
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
# Fetch the remote master branch before running diff-cover on Travis CI.
|
|
||||||
# https://github.com/Bachmann1234/diff-cover#troubleshooting
|
|
||||||
git fetch origin master:refs/remotes/origin/master
|
|
||||||
|
|
||||||
# CFLAGS=-O0 means build with no optimisation.
|
|
||||||
# Makes build much quicker for lxml and other dependencies.
|
|
||||||
time CFLAGS=-O0 python3 -m pip install diff_cover
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
coverage xml
|
|
||||||
diff-cover coverage.xml
|
|
||||||
diff-quality --violation=pyflakes
|
|
||||||
diff-quality --violation=pycodestyle
|
|
|
@ -4,8 +4,6 @@ check-manifest
|
||||||
coverage
|
coverage
|
||||||
jarn.viewdoc
|
jarn.viewdoc
|
||||||
olefile
|
olefile
|
||||||
pycodestyle
|
|
||||||
pyflakes
|
|
||||||
pyroma
|
pyroma
|
||||||
pytest
|
pytest
|
||||||
pytest-cov
|
pytest-cov
|
||||||
|
|
Loading…
Reference in New Issue
Block a user