2013-08-20 11:25:47 +00:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
2013-08-20 11:32:18 +00:00
|
|
|
install:
|
|
|
|
- "pip install --upgrade git+https://github.com/mitmproxy/netlib.git"
|
|
|
|
- "pip install --upgrade git+https://github.com/mitmproxy/pathod.git"
|
2014-01-28 02:09:21 +00:00
|
|
|
- "pip install -r requirements.txt --use-mirrors"
|
|
|
|
- "pip install -r test/requirements.txt --use-mirrors"
|
2013-08-20 11:25:47 +00:00
|
|
|
# command to run tests, e.g. python setup.py test
|
2013-08-25 01:45:32 +00:00
|
|
|
script:
|
2013-08-25 02:31:35 +00:00
|
|
|
- "nosetests --with-cov --cov-report term-missing"
|
2013-08-25 01:45:32 +00:00
|
|
|
after_success:
|
2014-01-22 00:33:02 +00:00
|
|
|
- coveralls
|
2014-01-28 01:52:41 +00:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
- "irc.oftc.net#mitmproxy"
|
|
|
|
on_success: change
|
|
|
|
on_failure: always
|
|
|
|
|