2014-12-24 00:39:38 +00:00
|
|
|
sudo: false
|
2015-08-27 00:57:09 +00:00
|
|
|
language: python
|
2015-06-08 11:39:05 +00:00
|
|
|
|
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
|
|
|
|
|
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:
|
2015-08-27 00:57:09 +00:00
|
|
|
- python: 2.7
|
2015-06-08 11:39:05 +00:00
|
|
|
- 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-03-31 16:35:14 +00:00
|
|
|
git:
|
|
|
|
depth: 9999999
|
2016-02-15 16:06:32 +00:00
|
|
|
- python: 3.5
|
2016-06-04 10:30:35 +00:00
|
|
|
env: SCOPE="netlib test/mitmproxy/script test/pathotest_utils.py test/pathotest_log.py test/pathotest_language_generators.py test/pathotest_language_writer.py"
|
2016-02-15 16:06:32 +00:00
|
|
|
- python: 3.5
|
2016-06-04 10:30:35 +00:00
|
|
|
env: SCOPE="netlib test/mitmproxy/script test/pathotest_utils.py test/pathotest_log.py test/pathotest_language_generators.py test/pathotest_language_writer.py" NO_ALPN=1
|
2016-01-30 21:05:37 +00:00
|
|
|
- python: 2.7
|
|
|
|
env: DOCS=1
|
2016-02-17 20:19:05 +00:00
|
|
|
script: 'cd docs && make html'
|
2016-02-04 02:19:39 +00:00
|
|
|
allow_failures:
|
|
|
|
- python: pypy
|
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
|
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-02-24 09:40:34 +00:00
|
|
|
- pip install -U virtualenv
|
|
|
|
- ./dev.sh
|
2016-06-04 09:25:47 +00:00
|
|
|
- source venv/bin/activate
|
2015-06-08 11:39:05 +00:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
- "openssl version -a"
|
2016-02-24 09:40:34 +00:00
|
|
|
- "python -c \"from OpenSSL import SSL; print(SSL.SSLeay_version(SSL.SSLEAY_VERSION))\""
|
2016-06-04 09:25:47 +00:00
|
|
|
- "flake8 --jobs 4 --count mitmproxy netlib pathod examples test"
|
2015-06-08 11:39:05 +00:00
|
|
|
|
|
|
|
script:
|
2016-06-04 10:30:35 +00:00
|
|
|
- "py.test --timeout 60 --cov netlib --cov mitmproxy --cov pathod test/$SCOPE"
|
2015-06-08 11:39:05 +00:00
|
|
|
|
|
|
|
after_success:
|
2014-01-22 00:33:02 +00:00
|
|
|
- coveralls
|
2015-11-29 14:11:08 +00:00
|
|
|
- |
|
2016-04-22 05:52:30 +00:00
|
|
|
if [[ $TRAVIS_OS_NAME == "osx" && $TRAVIS_PULL_REQUEST == "false" && ($TRAVIS_BRANCH == "master" || -n $TRAVIS_TAG) ]]
|
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
|
2016-02-16 01:04:58 +00:00
|
|
|
python ./release/rtool.py upload-snapshot --bdist --wheel
|
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
|
|
|
|
2014-12-24 00:56:46 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
2016-06-04 09:25:47 +00:00
|
|
|
- $HOME/build/mitmproxy/mitmproxy/venv
|
2015-08-27 00:57:09 +00:00
|
|
|
- $HOME/.cache/pip
|
2016-01-27 09:57:07 +00:00
|
|
|
- $HOME/.pyenv
|
2016-02-16 20:31:19 +00:00
|
|
|
- $HOME/Library/Caches/pip
|