aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'mitmproxy/.travis.yml')
-rw-r--r--mitmproxy/.travis.yml95
1 files changed, 95 insertions, 0 deletions
diff --git a/mitmproxy/.travis.yml b/mitmproxy/.travis.yml
new file mode 100644
index 00000000..f32a58c1
--- /dev/null
+++ b/mitmproxy/.travis.yml
@@ -0,0 +1,95 @@
+sudo: false
+language: python
+
+matrix:
+ fast_finish: true
+ include:
+ - python: 2.7
+ - python: 2.7
+ env: OPENSSL=1.0.2
+ addons:
+ apt:
+ sources:
+ # Debian sid currently holds OpenSSL 1.0.2
+ # change this with future releases!
+ - debian-sid
+ packages:
+ - libssl-dev
+ - python: pypy
+ - python: pypy
+ env: OPENSSL=1.0.2
+ addons:
+ apt:
+ sources:
+ # Debian sid currently holds OpenSSL 1.0.2
+ # change this with future releases!
+ - debian-sid
+ packages:
+ - libssl-dev
+ - language: generic
+ os: osx
+ osx_image: xcode7.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
+ - |
+ if [ "$TRAVIS_PYTHON_VERSION" = "pypy" ]; then
+ export PYENV_ROOT="$HOME/.pyenv"
+ if [ -f "$PYENV_ROOT/bin/pyenv" ]; then
+ pushd "$PYENV_ROOT" && git pull && popd
+ else
+ rm -rf "$PYENV_ROOT" && git clone --depth 1 https://github.com/yyuu/pyenv.git "$PYENV_ROOT"
+ fi
+ export PYPY_VERSION="4.0.1"
+ "$PYENV_ROOT/bin/pyenv" install --skip-existing "pypy-$PYPY_VERSION"
+ virtualenv --python="$PYENV_ROOT/versions/pypy-$PYPY_VERSION/bin/python" "$HOME/virtualenvs/pypy-$PYPY_VERSION"
+ source "$HOME/virtualenvs/pypy-$PYPY_VERSION/bin/activate"
+ fi
+ - "pip install -U pip setuptools"
+ - "pip install --src .. -r requirements.txt"
+
+before_script:
+ - "openssl version -a"
+
+script:
+ - "py.test -s --cov libmproxy --timeout 30"
+
+after_success:
+ - coveralls
+ - |
+ if [[ $TRAVIS_OS_NAME == "osx" && $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]]
+ then
+ git clone -q https://github.com/mitmproxy/release.git ../release
+ pip install -e ../release
+ python ../release/rtool.py bdist
+ python ../release/rtool.py upload-snapshot --sdist --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 \ No newline at end of file