travis: unbreak, and add irc notifications
This commit is contained in:
parent
26d6b189fc
commit
7815b3fb41
|
@ -5,10 +5,17 @@ python:
|
||||||
install:
|
install:
|
||||||
- "pip install coveralls --use-mirrors"
|
- "pip install coveralls --use-mirrors"
|
||||||
- "pip install nose-cov --use-mirrors"
|
- "pip install nose-cov --use-mirrors"
|
||||||
- "pip install -r requirements.txt --use-mirrors"
|
|
||||||
- "pip install --upgrade git+https://github.com/mitmproxy/netlib.git"
|
- "pip install --upgrade git+https://github.com/mitmproxy/netlib.git"
|
||||||
|
- "pip install -r requirements.txt --use-mirrors"
|
||||||
# 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"
|
||||||
after_success:
|
after_success:
|
||||||
- coveralls
|
- coveralls
|
||||||
|
notifications:
|
||||||
|
irc:
|
||||||
|
channels:
|
||||||
|
- "irc.oftc.net#mitmproxy"
|
||||||
|
on_success: change
|
||||||
|
on_failure: always
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue