summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 34432820469d2ae98f75b6488ede3243d90802e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
sudo: false
language: python
python:
    - '2.7'
    - '3.5'
matrix:
  include:
    - python: 2.7
      env: TOXENV=py27
      install: pip install tox
      script: tox
    - python: 3.6
      env: TOXENV=py36
      install: pip install tox
      script: tox
    - python: 3.5
      env: CODESTYLE=true
install:
    - 'pip install -r requirements.txt'
    - 'pip install -r requirements.test.txt'
script:
    - 'py.test --cov=pycco tests/'
    - 'python -m pycco.main pycco/main.py'
after_success:
    - coveralls