mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
81 lines
1.9 KiB
YAML
81 lines
1.9 KiB
YAML
sudo: false
|
|
language: python
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
# Debian sid currently holds OpenSSL 1.0.2
|
|
# change this with future releases!
|
|
- debian-sid
|
|
packages:
|
|
- libssl-dev
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- python: 2.7
|
|
- python: 2.7
|
|
env: NO_ALPN=1
|
|
- language: generic
|
|
os: osx
|
|
osx_image: xcode7.1
|
|
git:
|
|
depth: 9999999
|
|
- python: 3.5
|
|
env: SCOPE="netlib ./test/mitmproxy/script ./test/pathod/test_utils.py ./test/pathod/test_log.py"
|
|
- python: 3.5
|
|
env: SCOPE="netlib ./test/mitmproxy/script ./test/pathod/test_utils.py ./test/pathod/test_log.py" NO_ALPN=1
|
|
- python: 2.7
|
|
env: DOCS=1
|
|
script: 'cd docs && make html'
|
|
allow_failures:
|
|
- python: pypy
|
|
|
|
install:
|
|
- |
|
|
if [[ $TRAVIS_OS_NAME == "osx" ]]
|
|
then
|
|
brew update || brew update # try again if it fails
|
|
brew outdated openssl || brew upgrade openssl
|
|
brew install python
|
|
fi
|
|
- pip install -U virtualenv
|
|
- ./dev.sh
|
|
- source ./venv/bin/activate
|
|
|
|
before_script:
|
|
- "openssl version -a"
|
|
- "python -c \"from OpenSSL import SSL; print(SSL.SSLeay_version(SSL.SSLEAY_VERSION))\""
|
|
- "[[ $(flake8 -qq --count --exit-zero mitmproxy netlib pathod examples test) -le 12 ]]"
|
|
|
|
script:
|
|
- "py.test --timeout 60 --cov netlib --cov mitmproxy --cov pathod ./test/$SCOPE"
|
|
|
|
after_success:
|
|
- coveralls
|
|
- |
|
|
if [[ $TRAVIS_OS_NAME == "osx" && $TRAVIS_PULL_REQUEST == "false" && ($TRAVIS_BRANCH == "master" || -n $TRAVIS_TAG) ]]
|
|
then
|
|
pip install -e ./release
|
|
python ./release/rtool.py bdist
|
|
python ./release/rtool.py upload-snapshot --bdist --wheel
|
|
fi
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "irc.oftc.net#mitmproxy"
|
|
on_success: change
|
|
on_failure: always
|
|
slack:
|
|
rooms:
|
|
- mitmproxy:YaDGC9Gt9TEM7o8zkC2OLNsu#ci
|
|
on_success: always
|
|
on_failure: always
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
- $HOME/.pyenv
|
|
- $HOME/Library/Caches/pip
|