mitmproxy/.travis.yml

75 lines
1.6 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
2016-02-15 16:06:32 +00:00
addons:
apt:
sources:
# Debian sid currently holds OpenSSL 1.0.2
# change this with future releases!
- debian-sid
packages:
- libssl-dev
matrix:
2015-08-27 00:57:09 +00:00
fast_finish: true
include:
2015-08-27 00:57:09 +00:00
- python: 2.7
- python: 2.7
2016-02-15 16:06:32 +00:00
env: NO_ALPN=1
2016-01-30 21:05:37 +00:00
- language: generic
os: osx
osx_image: xcode7.1
2016-02-15 16:06:32 +00:00
- python: 3.5
env: SCOPE="netlib"
- python: 3.5
env: NO_ALPN=1 SCOPE="netlib"
2016-01-30 21:05:37 +00:00
- python: 2.7
env: DOCS=1
2016-02-15 16:06:32 +00:00
script: 'cd mitmproxy/docs && make html'
allow_failures:
- python: pypy
2014-09-08 22:15:06 +00:00
install:
2015-11-26 13:59:43 +00:00
- |
if [[ $TRAVIS_OS_NAME == "osx" ]]
then
2015-11-29 14:11:08 +00:00
brew update || brew update # try again if it fails
brew outdated openssl || brew upgrade openssl
brew install python
2015-11-26 13:59:43 +00:00
fi
2016-01-11 14:40:09 +00:00
- "pip install -U pip setuptools"
- "pip install -r requirements.txt"
before_script:
- "openssl version -a"
script:
2016-02-15 16:06:32 +00:00
- "py.test -s --cov libmproxy --cov netlib --cov libpathod --timeout 30 ./test/$SCOPE"
after_success:
- coveralls
2015-11-29 14:11:08 +00:00
- |
2015-11-29 14:23:44 +00:00
if [[ $TRAVIS_OS_NAME == "osx" && $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]]
2015-11-29 14:11:08 +00:00
then
2016-02-15 16:06:32 +00:00
pip install -e ./release
python ./release/rtool.py bdist
python ./release/rtool.py upload-snapshot --sdist --bdist --wheel
2015-11-29 14:11:08 +00:00
fi
2014-01-28 01:52:41 +00:00
notifications:
irc:
channels:
- "irc.oftc.net#mitmproxy"
on_success: change
on_failure: always
2015-06-23 02:01:31 +00:00
slack:
rooms:
- mitmproxy:YaDGC9Gt9TEM7o8zkC2OLNsu#ci
on_success: always
2015-06-23 02:01:31 +00:00
on_failure: always
2014-12-24 00:56:46 +00:00
cache:
directories:
2015-08-27 00:57:09 +00:00
- $HOME/.cache/pip
2016-01-27 09:57:07 +00:00
- $HOME/.pyenv
- $HOME/Library/Caches/pip