blob: 0bfb11bb5304cd0816b27a164846ddb9368e97d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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'
- python ez_setup.py --version 18.6.1
|