diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 7e4209c0..653f0d8c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,12 +3,19 @@ python: - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - - "pip install coveralls --use-mirrors" - - "pip install nose-cov --use-mirrors" - "pip install -r requirements.txt --use-mirrors" + - "pip install ." - "pip install --upgrade git+https://github.com/mitmproxy/pathod.git" + - "pip install -r test/requirements.txt --use-mirrors" # command to run tests, e.g. python setup.py test script: - "nosetests --with-cov --cov-report term-missing" after_success: - - coveralls
\ No newline at end of file + - coveralls +notifications: + irc: + channels: + - "irc.oftc.net#mitmproxy" + on_success: change + on_failure: always + |