2013-12-13 05:15:32 +00:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
|
|
|
install:
|
2014-01-28 01:22:01 +00:00
|
|
|
- "pip install -r requirements.txt --use-mirrors"
|
2014-01-28 01:42:39 +00:00
|
|
|
- "pip install ."
|
2014-01-28 01:32:30 +00:00
|
|
|
- "pip install --upgrade git+https://github.com/mitmproxy/pathod.git"
|
2014-01-28 01:57:46 +00:00
|
|
|
- "pip install -r test/requirements.txt --use-mirrors"
|
2013-12-13 05:15:32 +00:00
|
|
|
# command to run tests, e.g. python setup.py test
|
|
|
|
script:
|
|
|
|
- "nosetests --with-cov --cov-report term-missing"
|
|
|
|
after_success:
|
2014-01-28 01:22:01 +00:00
|
|
|
- coveralls
|
2014-01-28 02:13:31 +00:00
|
|
|
notifications:
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
- "irc.oftc.net#mitmproxy"
|
|
|
|
on_success: change
|
|
|
|
on_failure: always
|
|
|
|
|