summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: efb09aae82e75d5d7131bb51f473bbd424f520e9 (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
language: python

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

virtualenv:
  system_site_packages: true

before_script:
  - source test.env

install:
  - export PYTHONIOENCODING=UTF8
  - python setup.py install
  - pip install coveralls --use-mirrors

script:
  - coverage run tools/testall.py

after_success:
  coveralls