steth/.travis.yml
wangwei 662b8932b5 Move mock to test-requirements
So that the spec will not need mock any more.
2016-01-13 12:23:40 +08:00

15 lines
321 B
YAML

language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install:
- "pip install -r requirements.txt"
- "pip install -r test-requirements.txt"
- "pip install pep8 --use-mirrors"
- "pip install nose --use-mirrors"
# command to run tests
before_script:
- "pep8 stetho"
script: nosetests -v