aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 66e2b74524baeaaee6e1a6a4569db26591f0b48b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "3.4"
  - "3.5"
  - "pypy"
  - "pypy3"
install:
  - pip install six
  - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
  - python updatezinfo.py
script:
  - python setup.py test
sudo: false