blob: 430948d6b295cab05b166c5f073714b2b039d9f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
env:
- ARCH=x86
language: python
sudo: false
python:
- "2.7"
cache:
directories:
- "$HOME/.pip-cache/"
- "/home/travis/virtualenv/python2.7"
install:
- "pip install -r client/requirements.txt --download-cache $HOME/.pip-cache"
- "pip install python-coveralls --download-cache $HOME/.pip-cache"
- "pip install coverage --download-cache $HOME/.pip-cache"
- "pip install flake8 --download-cache $HOME/.pip-cache"
before_script:
- "flake8 jasper.py client tests"
script:
- "coverage run -m unittest discover"
after_success:
- "coverage report"
- "coveralls"
|