2015-08-27 00:57:09 +00:00
|
|
|
language: python
|
2015-06-08 11:39:05 +00:00
|
|
|
|
2017-05-19 03:58:19 +00:00
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- requires-io-master
|
|
|
|
|
2016-07-07 18:56:39 +00:00
|
|
|
env:
|
2016-06-29 02:44:25 +00:00
|
|
|
global:
|
|
|
|
- CI_DEPS=codecov>=2.0.5
|
|
|
|
- CI_COMMANDS=codecov
|
2017-05-19 03:58:19 +00:00
|
|
|
|
2017-02-10 15:37:22 +00:00
|
|
|
git:
|
|
|
|
depth: 10000
|
2017-02-12 11:32:30 +00:00
|
|
|
|
2015-06-08 11:39:05 +00:00
|
|
|
matrix:
|
2015-08-27 00:57:09 +00:00
|
|
|
fast_finish: true
|
2015-06-08 11:39:05 +00:00
|
|
|
include:
|
2018-06-05 16:47:42 +00:00
|
|
|
- python: 3.5
|
|
|
|
env: TOXENV=py35 # this just makes sure that our version detection shows an appropriate error message
|
2018-03-06 22:50:47 +00:00
|
|
|
- python: 3.6
|
|
|
|
env: TOXENV=lint
|
2018-03-06 21:25:38 +00:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode7.3
|
|
|
|
language: generic
|
2018-05-18 08:37:56 +00:00
|
|
|
env: TOXENV=py36 CIBUILD=1 PYINSTALLER=1
|
2018-03-06 22:50:47 +00:00
|
|
|
- python: 3.6
|
2018-05-18 08:37:56 +00:00
|
|
|
env: TOXENV=py36 CIBUILD=1 PYINSTALLER=1 WHEEL=1 DOCKER=1
|
|
|
|
sudo: required
|
|
|
|
services:
|
|
|
|
- docker
|
2018-03-06 22:50:47 +00:00
|
|
|
- python: 3.6
|
|
|
|
env: TOXENV=individual_coverage
|
2018-06-28 08:18:28 +00:00
|
|
|
- python: 3.7
|
2018-05-13 07:56:30 +00:00
|
|
|
env: TOXENV=py37
|
2018-09-07 15:47:31 +00:00
|
|
|
dist: xenial
|
|
|
|
sudo: true # required workaround for https://github.com/travis-ci/travis-ci/issues/9815
|
2018-03-06 22:50:47 +00:00
|
|
|
- language: node_js
|
|
|
|
node_js: "node"
|
|
|
|
before_install:
|
|
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
|
|
- export PATH=$HOME/.yarn/bin:$PATH
|
|
|
|
install:
|
|
|
|
- cd web && yarn
|
|
|
|
- yarn global add codecov
|
|
|
|
script: npm test && codecov
|
|
|
|
cache:
|
|
|
|
yarn: true
|
|
|
|
directories:
|
|
|
|
- web/node_modules
|
2018-03-25 10:12:00 +00:00
|
|
|
- python: 3.6
|
|
|
|
env: NAME=docs TOXENV=docs
|
2018-03-06 22:50:47 +00:00
|
|
|
install:
|
2018-06-05 18:48:36 +00:00
|
|
|
- wget https://github.com/gohugoio/hugo/releases/download/v0.41/hugo_0.41_Linux-64bit.deb
|
2018-03-06 22:50:47 +00:00
|
|
|
- sudo dpkg -i hugo*.deb
|
2018-03-25 10:12:00 +00:00
|
|
|
- pip install tox virtualenv setuptools
|
|
|
|
- pyenv global system 3.6
|
2018-03-06 22:50:47 +00:00
|
|
|
script:
|
2018-03-25 10:12:00 +00:00
|
|
|
- tox
|
2018-03-06 22:50:47 +00:00
|
|
|
after_success:
|
|
|
|
- echo done
|
2015-06-08 11:39:05 +00:00
|
|
|
|
2014-09-08 22:15:06 +00:00
|
|
|
install:
|
2015-11-26 13:59:43 +00:00
|
|
|
- |
|
|
|
|
if [[ $TRAVIS_OS_NAME == "osx" ]]
|
|
|
|
then
|
2016-12-01 09:36:18 +00:00
|
|
|
brew update || brew update
|
|
|
|
brew outdated pyenv || brew upgrade pyenv
|
2016-07-09 12:39:12 +00:00
|
|
|
eval "$(pyenv init -)"
|
2018-03-31 15:25:21 +00:00
|
|
|
env PYTHON_CONFIGURE_OPTS="--enable-framework" pyenv install --skip-existing 3.6.5
|
|
|
|
pyenv global 3.6.5
|
|
|
|
pyenv shell 3.6.5
|
2015-11-26 13:59:43 +00:00
|
|
|
fi
|
2018-03-06 21:25:38 +00:00
|
|
|
- pip install tox virtualenv setuptools
|
2015-06-08 11:39:05 +00:00
|
|
|
|
2016-11-27 23:51:52 +00:00
|
|
|
script:
|
2018-05-18 08:37:56 +00:00
|
|
|
# All these steps MUST succeed for the job to be successful!
|
|
|
|
# Using the after_success block DOES NOT capture errors.
|
|
|
|
# Pull requests might break our build - we need to check this.
|
|
|
|
# Pull requests are not allowed to upload build artifacts - enforced by cibuild script.
|
2018-06-02 19:37:44 +00:00
|
|
|
- |
|
|
|
|
if [[ $TRAVIS_COMMIT_MESSAGE = *"[notest]"* ]]; then
|
|
|
|
echo "!!!! Skipping tests."
|
|
|
|
else
|
|
|
|
tox -- --verbose --cov-report=term
|
|
|
|
fi
|
|
|
|
|
2016-11-27 23:51:52 +00:00
|
|
|
- |
|
2018-05-18 08:37:56 +00:00
|
|
|
if [[ $CIBUILD == "1" ]]
|
2016-11-27 23:51:52 +00:00
|
|
|
then
|
|
|
|
git fetch --unshallow --tags
|
2018-05-18 08:37:56 +00:00
|
|
|
tox -e cibuild -- build && tox -e cibuild -- upload
|
2015-11-29 14:11:08 +00:00
|
|
|
fi
|
2015-06-08 11:39:05 +00:00
|
|
|
|
2014-01-28 01:52:41 +00:00
|
|
|
notifications:
|
2016-06-01 05:45:03 +00:00
|
|
|
slack:
|
|
|
|
-rooms:
|
|
|
|
mitmproxy:YaDGC9Gt9TEM7o8zkC2OLNsu
|
|
|
|
on_success: change
|
|
|
|
on_failure: change
|
|
|
|
on_start: never
|
2015-06-08 11:39:05 +00:00
|
|
|
|
2016-07-09 12:39:12 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.pyenv
|
|
|
|
- $HOME/.cache/pip
|