aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: d2c755231255e06f7b1691ef4389cd3bb6364fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: python
python:
  - "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: 
  - "pip install --upgrade git+https://github.com/mitmproxy/netlib.git"
  - "pip install --upgrade git+https://github.com/mitmproxy/pathod.git"
  - "pip install -r requirements.txt --use-mirrors"
  - "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
notifications:
  irc:
    channels:
      - "irc.oftc.net#mitmproxy"
    on_success: change
    on_failure: always