mitmproxy/.travis.yml

105 lines
2.6 KiB
YAML
Raw Normal View History

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.5
env: TOXENV=py35 # this just makes sure that our version detection shows an appropriate error message
- python: 3.6
env: TOXENV=lint
- os: osx
osx_image: xcode7.3
language: generic
2018-05-18 08:37:56 +00:00
env: TOXENV=py36 CIBUILD=1 PYINSTALLER=1
- 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
- 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
- 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:
2018-06-05 18:48:36 +00:00
- wget https://github.com/gohugoio/hugo/releases/download/v0.41/hugo_0.41_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:
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
- |
2018-05-18 08:37:56 +00:00
if [[ $CIBUILD == "1" ]]
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
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