summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 4b14d1692b32838caa0d5595661f8eb9ab8e4a70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: python

python:
  - 2.6
  - 2.7
  - 3.2
  - 3.3
  - 3.4
  - pypy

before_install:
  - sudo apt-get install python-yaml python3-yaml
install:
  - export PYTHONIOENCODING=UTF8
  - pip install coveralls pytest-cov

script:
    - py.test --cov pexpect --cov-config .coveragerc

after_success:
  - coverage combine
  - coveralls