remove 3.6 from appveyor, reduce in tox remove deprecated travis feature "sudo: false" split docs and devel,lowest travis envs remove osx py2 env in attempt to finish faster move travis matrix to python key
56 lines
927 B
YAML
56 lines
927 B
YAML
os: linux
|
|
dist: xenial
|
|
language: python
|
|
python:
|
|
- "3.7"
|
|
- "3.6"
|
|
- "3.5"
|
|
- "3.4"
|
|
- "2.7"
|
|
- nightly
|
|
- pypy3.5-6.0
|
|
env: TOXENV=py,codecov
|
|
|
|
matrix:
|
|
include:
|
|
- env: TOXENV=docs-html
|
|
- env: TOXENV=devel,lowest,codecov
|
|
- os: osx
|
|
language: generic
|
|
env: TOXENV=py3,codecov
|
|
cache:
|
|
directories:
|
|
- $HOME/Library/Caches/Homebrew
|
|
- $HOME/Library/Caches/pip
|
|
allow_failures:
|
|
- python: nightly
|
|
- python: pypy3.5-6.0
|
|
- os: osx
|
|
fast_finish: true
|
|
|
|
before_install:
|
|
- |
|
|
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
|
brew upgrade python
|
|
export PATH="/usr/local/opt/python/libexec/bin:${PATH}"
|
|
fi
|
|
|
|
install:
|
|
- pip install tox
|
|
|
|
script:
|
|
- tox
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
- $HOME/.cache/pre-commit
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- /^\d+(\.\d+)*-maintenance$/
|
|
- /^\d+(\.\d+)*(\.x)?$/
|
|
|
|
notifications:
|
|
email: false
|