mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-27 10:26:23 +00:00
import travis config from netlib
this enables ALPN support with OpenSSL 1.0.2
This commit is contained in:
parent
05efcf0a78
commit
da0792f457
55
.travis.yml
55
.travis.yml
@ -1,14 +1,47 @@
|
|||||||
language: python
|
language: python
|
||||||
|
|
||||||
|
sudo: false
|
||||||
|
|
||||||
python:
|
python:
|
||||||
- "2.7"
|
- "2.7"
|
||||||
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
- pypy
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- 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
|
||||||
|
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
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- "pip install --src .. -r requirements.txt"
|
- "pip install --src . -r requirements.txt"
|
||||||
# command to run tests, e.g. python setup.py test
|
|
||||||
|
before_script:
|
||||||
|
- "openssl version -a"
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- "nosetests --with-cov --cov-report term-missing"
|
- "nosetests --with-cov --cov-report term-missing"
|
||||||
|
- "./check_coding_style.sh"
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- coveralls
|
- coveralls
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
irc:
|
irc:
|
||||||
channels:
|
channels:
|
||||||
@ -16,3 +49,19 @@ notifications:
|
|||||||
on_success: change
|
on_success: change
|
||||||
on_failure: always
|
on_failure: always
|
||||||
|
|
||||||
|
# exclude cryptography from cache
|
||||||
|
# it depends on libssl-dev version
|
||||||
|
# which needs to be compiled specifically to each version
|
||||||
|
before_cache:
|
||||||
|
- pip uninstall -y cryptography
|
||||||
|
- rm -rf /home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages/cryptography/
|
||||||
|
- rm -rf /home/travis/virtualenv/pypy-2.5.0/site-packages/cryptography/
|
||||||
|
- rm /home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py
|
||||||
|
- rm /home/travis/virtualenv/pypy-2.5.0/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py
|
||||||
|
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- /home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages
|
||||||
|
- /home/travis/virtualenv/python2.7.9/bin
|
||||||
|
- /home/travis/virtualenv/pypy-2.5.0/site-packages
|
||||||
|
- /home/travis/virtualenv/pypy-2.5.0/bin
|
||||||
|
Loading…
Reference in New Issue
Block a user