summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: fee4647fca2d8c10f642cfdc07756a1d3e5371bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
env:
    - ARCH=x86
language: python
python:
    - "2.7"
install: 
    - "pip install -r client/requirements.txt"
    - "pip install python-coveralls"
    - "pip install coverage"
    - "pip install flake8"
before_script:
    - "flake8 jasper.py client tests"
script:
    - "coverage run -m unittest discover"
after_success:
    - "coverage report"
    - "coveralls"