mitmproxy/.travis.yml

95 lines
2.0 KiB
YAML
Raw Normal View History

2014-12-24 00:39:38 +00:00
sudo: false
2015-08-27 00:57:09 +00:00
language: python
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
git:
depth: 10000
2017-02-12 11:32:30 +00:00
matrix:
2015-08-27 00:57:09 +00:00
fast_finish: true
include:
- python: 3.6
env: TOXENV=lint
- os: osx
osx_image: xcode7.3
language: generic
env: TOXENV=py36 BDIST=1
- python: 3.6
2018-03-07 08:22:33 +00:00
env: TOXENV=py36 BDIST=1 WHEEL=1
- python: 3.6
env: TOXENV=individual_coverage
- 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
- python: 3.6
env: NAME=docs TOXENV=docs
install:
- wget https://github.com/gohugoio/hugo/releases/download/v0.37/hugo_0.37_Linux-64bit.deb
- sudo dpkg -i hugo*.deb
- pip install tox virtualenv setuptools
- pyenv global system 3.6
script:
- tox
after_success:
- echo done
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
eval "$(pyenv init -)"
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
- pip install tox virtualenv setuptools
script:
2017-01-23 21:53:56 +00:00
- tox -- --verbose --cov-report=term
- |
if [[ $BDIST == "1" ]]
then
git fetch --unshallow --tags
tox -e cibuild -- build
fi
after_success:
2015-11-29 14:11:08 +00:00
- |
if [[ $BDIST == "1" ]]
2015-11-29 14:11:08 +00:00
then
tox -e cibuild -- upload
2015-11-29 14:11:08 +00:00
fi
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
cache:
directories:
- $HOME/.pyenv
- $HOME/.cache/pip