mitmproxy/.travis.yml

90 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:
2017-08-04 23:44:11 +00:00
- python: 3.6
2016-07-07 18:56:39 +00:00
env: TOXENV=lint
2016-07-23 04:46:56 +00:00
- os: osx
osx_image: xcode7.3
language: generic
env: TOXENV=py35 BDIST=1
2016-06-07 07:17:15 +00:00
- python: 3.5
2017-07-24 19:01:25 +00:00
env: TOXENV=py35 BDIST=1
dist: precise
2017-07-24 19:01:25 +00:00
- python: 3.6
env: TOXENV=py36
2016-12-23 19:30:04 +00:00
- python: 3.6
2017-02-15 17:52:32 +00:00
env: TOXENV=individual_coverage
- language: node_js
2017-03-08 05:00:09 +00:00
node_js: "node"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
2017-03-26 01:36:18 +00:00
install:
- cd web && yarn
- yarn global add codecov
script: npm test && codecov
cache:
2017-03-08 05:00:09 +00:00
yarn: true
directories:
2017-03-08 05:00:09 +00:00
- web/node_modules
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 -)"
2017-07-24 19:01:25 +00:00
env PYTHON_CONFIGURE_OPTS="--enable-framework" pyenv install --skip-existing 3.5.3
pyenv global 3.5.3
pyenv shell 3.5.3
pip install -U pip setuptools wheel virtualenv
2015-11-26 13:59:43 +00:00
fi
- pip install tox
script:
2017-01-23 21:53:56 +00:00
- tox -- --verbose --cov-report=term
- |
if [[ $BDIST == "1" ]]
then
git fetch --unshallow --tags
tox -e rtool -- bdist
fi
after_success:
# we build binaries on every run, but we only upload them for master snapshots or tags.
2015-11-29 14:11:08 +00:00
- |
if [[ $BDIST == "1" && $TRAVIS_PULL_REQUEST == "false" && ($TRAVIS_BRANCH == "pyinstaller" || $TRAVIS_BRANCH == "master" || -n $TRAVIS_TAG) ]]
2015-11-29 14:11:08 +00:00
then
tox -e rtool -- decrypt release/known_hosts.enc release/known_hosts
tox -e rtool -- upload-snapshot --bdist
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