summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 54d9c395bcbaf9aa75d1d542ea3375d0e08bd6ec (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.3
  - 3.4
  - 3.5
  - pypy
env:
 - ""
 - LC_ALL=C LC_CTYPE=C
script:
 # avoid VersionConflict when newer version is required
 - pip install -U pytest

 # Output the env, because the travis docs just can't be trusted
 - env

 # update egg_info based on setup.py in checkout
 - python bootstrap.py

 - python setup.py test --addopts='-rs'

 # test the bootstrap script
 - python ez_setup.py