pypy support, faster travis builds
This commit is contained in:
parent
3c919631d4
commit
b6af3fddf4
|
@ -1,9 +1,11 @@
|
||||||
language: python
|
language: python
|
||||||
|
sudo: false
|
||||||
python:
|
python:
|
||||||
- "2.7"
|
- "2.7"
|
||||||
|
- pypy
|
||||||
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
||||||
install:
|
install:
|
||||||
- "pip install --src .. -r requirements.txt"
|
- "pip install --src . -r requirements.txt"
|
||||||
# command to run tests, e.g. python setup.py test
|
# command to run tests, e.g. python setup.py test
|
||||||
script:
|
script:
|
||||||
- "nosetests --with-cov --cov-report term-missing"
|
- "nosetests --with-cov --cov-report term-missing"
|
||||||
|
@ -15,4 +17,7 @@ notifications:
|
||||||
- "irc.oftc.net#mitmproxy"
|
- "irc.oftc.net#mitmproxy"
|
||||||
on_success: change
|
on_success: change
|
||||||
on_failure: always
|
on_failure: always
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- /home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages
|
||||||
|
- /home/travis/virtualenv/pypy-2.5.0/site-packages
|
|
@ -1,4 +1,8 @@
|
||||||
[![Build Status](https://travis-ci.org/mitmproxy/netlib.png?branch=master)](https://travis-ci.org/mitmproxy/netlib) [![Coverage Status](https://coveralls.io/repos/mitmproxy/netlib/badge.png?branch=master)](https://coveralls.io/r/mitmproxy/netlib)
|
[![Build Status](https://travis-ci.org/mitmproxy/netlib.svg?branch=master)](https://travis-ci.org/mitmproxy/netlib)
|
||||||
|
[![Coverage Status](https://coveralls.io/repos/mitmproxy/netlib/badge.svg?branch=master)](https://coveralls.io/r/mitmproxy/netlib)
|
||||||
|
[![Latest Version](https://pypip.in/version/netlib/badge.svg?style=flat)](https://pypi.python.org/pypi/netlib)
|
||||||
|
[![Supported Python versions](https://pypip.in/py_versions/netlib/badge.svg?style=flat)](https://pypi.python.org/pypi/netlib)
|
||||||
|
[![Supported Python implementations](https://pypip.in/implementation/netlib/badge.svg?style=flat)](https://pypi.python.org/pypi/netlib)
|
||||||
|
|
||||||
Netlib is a collection of network utility classes, used by the pathod and
|
Netlib is a collection of network utility classes, used by the pathod and
|
||||||
mitmproxy projects. It differs from other projects in some fundamental
|
mitmproxy projects. It differs from other projects in some fundamental
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -26,6 +26,8 @@ setup(
|
||||||
"Operating System :: POSIX",
|
"Operating System :: POSIX",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Programming Language :: Python :: 2",
|
"Programming Language :: Python :: 2",
|
||||||
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
|
"Programming Language :: Python :: Implementation :: PyPy",
|
||||||
"Topic :: Internet",
|
"Topic :: Internet",
|
||||||
"Topic :: Internet :: WWW/HTTP",
|
"Topic :: Internet :: WWW/HTTP",
|
||||||
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
||||||
|
|
Loading…
Reference in New Issue